If we abstract out the DataContext, then are L2S and L2O queries identical?
I already have a working prototype which demonstrates this, but it is very simple and wonder if it will hold up to more advanced querying.
Does anyone know?
|
If we abstract out the DataContext, then are L2S and L2O queries identical? I already have a working prototype which demonstrates this, but it is very simple and wonder if it will hold up to more advanced querying. Does anyone know?
| |||
|
feedback
|
|
No they're not the same. LINQ to Objects queries operate on LINQ to SQL queries operate on It's quite commonplace for LINQ to SQL to complain that a method can't be translated into SQL, even though that method works perfectly in a LINQ to Objects query. (In other cases, you may not see an exception, but the query results might be subtly different between LINQ to Objects and LINQ to SQL.) For example, LINQ to SQL will choke on this simple query, whereas LINQ to Objects will be fine:
(It's often possible to workaround these limitations, but the fact that you can't guarantee that any arbitrary LINQ to Objects query will work as a LINQ to SQL query tells me that they're not the same!) | |||||
feedback
|
|
The query syntax is the same. If you use Enumerable.ToQuerable, even the types are the same. But there are some differences:
So in the end, you will have to test against a database to be sure, but I think L2O is pretty good for simple, fast unit-tests. | |||
|
feedback
|
|
Frustratingly, all
So you can't really use | |||||
feedback
|