linq to entities vs linq to objects - are they the same?

后端 未结 5 2028
长发绾君心
长发绾君心 2020-12-04 17:55

I usually use the term entity to represent a business data object and in my mind, the linq to entities and linq to objects were the sa

5条回答
  •  隐瞒了意图╮
    2020-12-04 18:47

    Linq2Entities stands for querying data via the ADO.NET Entity Framework (Database)

    Linq2Objects stands for querying in memory data (local objects).

提交回复
热议问题