Tagged Questions
2
votes
1answer
128 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
244 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 ...
0
votes
1answer
134 views
how to use a delegate to get by name a CompiledQuery
I'm trying to find and run a CompiledQuery given the name. How do I access the compiled query by name and how do I then invoke the delegate?
Here's as far as I can get - I get the error 'Error ...