質問するログイン新規登録

回答編集履歴

1

2008年前→2008年頃

2020/02/04 04:50

投稿

mima_ita
mima_ita

スコア13

answer CHANGED
@@ -5,7 +5,7 @@
5
5
  > LINQ to SQL was the first object-relational mapping technology released by Microsoft. It works well in basic scenarios and continues to be supported in Visual Studio, but it's no longer under active development. Use LINQ to SQL when maintaining a legacy application that's already using it, or in simple applications that use SQL Server and do not require multi-table mapping. In general, new applications should use the Entity Framework when an object-relational mapper layer is required.
6
6
 
7
7
  要約すると、既存のアプリケーション用にLinq To SQLは提供はするけど、活発に開発していないので、新しいアプリケーションを作る場合はEntity Frameworkを使用してくださいとあります。
8
- このLinq To SQLが非推奨になったのは[2008年ほど前から路線](https://stackoverflow.com/questions/3041011/is-linq-to-sql-deprecated)でした。
8
+ このLinq To SQLが非推奨になったのは[2008年ころから始まった路線](https://stackoverflow.com/questions/3041011/is-linq-to-sql-deprecated)でした。
9
9
 
10
10
 
11
11
  そのため、最近(2016年頃)から開発された.NET Coreにおいて非推奨である機能をわざわざサポートをしなかったと推測されます。