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 句を追加し続ける必要があります。