0
votes
1answer
99 views
Pipes and Filters and CompiledQuery.Compile
Hi guys
I have started using linq to sql and the entity framework and have found the development experience to be fairly good. Like the way you can break a query apart and combine different queries …
2
votes
1answer
52 views
Is necessary to compile linq queries in subsonic?
I'd like to know if it's necessary to compile linq queries to the subsonic entities?
For example would I'd need to compile the following linq query?
var comments = from a in All()
…
2
votes
1answer
62 views
Do Compiled Queries Cache?
Much of my application uses complied queries to retrieve data. In these queries I'll often refer to the current user. I'm noticing that if a user, B, logs in after another user, A, then user B will …
1
vote
1answer
251 views
Compiled Queries and “Parameters cannot be sequences”
I thought that compiled queries would perform the same query translation as DataContext. Yet I'm getting a run-time error when I try to use a query with a .Contains method call. Where have I gone …
