Given a simple projection like the following, NHibernate will cache the query plan and not update the value of the variable when the query is the same:
int argValue = 1;
var result1 = database.Users.Select(x => new {x.Name, BadArg = argValue}).First();
argValue = 2;
var result2 = database.Users.Select(x => new {x.Name, BadArg = argValue}).First();
Expected
result1 value would be Name = "Bob" and BadArg = 1
result2 value would be Name = "Bob" and BadArg = 2
Actual
result1 value would be Name = "Bob" and BadArg = 1
result2 value would be Name = "Bob" and BadArg = 1
Obviously this can cause lots of crazy behavior if you aren't expecting it. I've seen a couple bug reports similar to this in NHibernate's bug tracking, but there hasn't been any action on it since last May. So either nobody is using Linq to Nhibernate very much or there is some workaround that I don't know about.
Before I dig into NHibernate source, is there a way to disable the query plan caching to prevent this behavior or some other workaround or has anyone applied the patch from the above link?
Note
The example is meant to keep the question simple, in reality I have a complicated projection that I want to keep as an IQueryable, prematurely converting to an IEnumerable won't work.
Update Doesn't work in github master for Nhibernate 3.2.1