Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们刚刚从 ADO.Net 迁移到 Entity Framework。我有一个包含许多字段的 SearchCriteria 对象。因为它有很多字段,所以它有很多where子句的可能性。使用 LinQ 和 EntityFramework 执行此操作的最佳实践是什么。
我想到了。我们需要使用 IQueryable 并继续添加 where 子句以最终获取数据。