Hi i making filter with linq nhibernate all working good but when i try filter text with quote select return nothing...
qr.Where(o => o.Desc.ToLower().Equals("some text")); // working
qr.Where(o => o.Desc.ToLower().Equals("some \"text\""));
// not working because nhibernate bind parameter as 'some \"text\"' but not 'some "text"'
Its some nhibernate bug? Or exist some option witch force nhibernate replace " with \" ? Thanks for all
It works fine for me (just tried your exact code)
What version of NH are you using?
Output: