Why is no SQL being generated when I run my Nhibernate 3 query? public IQueryable<Chapter> FindAllChapters()
i\'ve been using Nhibernate with LINQ a fair bit now and i have a few issues.Say i have the following entities:
I have just discovered that I don\'t think my nhibernate setup seems to be cacheing properly. I\'m running a SQL server profiler and neither the 1st or 2nd level cache appear to be working.
Consider following LINQ-to-NHibernate queries: var q1 = from se in query.ToList<SomeEntity>() where
I have this query var temp = from x in ActiveRecordLinq.AsQueryable<Circuits>() where x.User_Created == false
I have an entity where a composite id is used. I changed to code to make use of wrapping the composite id in a seperate key class. I expected that with Linq I could do a comparison on key object and w
Here\'s the setup. NHibernate, Fluent NHibenrate and Nhibernate Linq The entities invoved are Fault - a record of a fault occuring
If I try to add a where clause, containing a lambda filter on a boolean field, to a nhibernate linq query, the filter seems to be ignored:
My application has the following database structure: Transactions: - TransactionID (PK, Identity, Int) - TypeID (FK, Int)
Though the project in which I\'m having this issue addresses a different domain, I\'ve found a metaphor that may help to present my question clearly: