No plans AFAIK. Why would you want that? LINQ to SQL has them because it is incredibly slow and does not cache. Compiled queries are a burden on the programmer: you need to manage the delegates (static members...), use this awful syntax, can only use up to 4 paramters (limit of Func<...>), and if you forget one parameter it will be silently captured and the query will just give you wrong results starting with the 2nd invocation (i.e., the unit test will work)
Did you actually measure the perfomance of NH LINQ and come to the conclusion that you need them? Because NH LINQ does cache, so transformation time for subsequent executions should be neglectable. Cheers, Stefan On 26 Okt., 02:28, MartinF <[email protected]> wrote: > Hello, > > Is it possible to compile a linq query or will it become possible ? > > Martin -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
