Querying Out-of-Process Data
2 sectionsRapid overview
Querying Out-of-Process Data
TL;DR
In-process data lives in your application's memory (a List<T>), so LINQ to Objects can run your lambdas directly as compiled delegates. Out-of-process data lives somewhere else: a SQL database, Cosmos DB, MongoDB, an OData or search service…
Read →How it works
Q: What does "querying out-of-process data" mean?
Read →