I am running into an issue with an NHibernate filter.It works great until I do a left outer join to the object.
I have such a simple model: public abstract class Entity { public virtual Guid Id { get; protected set;}
i have the following classes and mappings abstract class BaseClass { public virtual int Keypart1 { get; set; }
I have 3 table in a sample. i am going to join 2 table but i have problem the following is my code : <?xml version=\"1.0\"?>
I\'m trying to create a SQL query in NHibernate using CreateSQLQuery: var query = session.CreateSQLQuery(
I have two tables: Table1 : { id:primary key name: email: } Table2: Lid: primary key tname: email: } In both the cases email is neither primary key, nor the foreign. Is it possible to establish one
I have a mapping issue with the table-per-class hierarchy in Fluent/NHibernate.When retrieving the records from the database, I keep getting an error (the Wrong type exception)
Is it possible with Fluent NHibernate to map a property with开发者_如何学运维 the following signature?
Looking for some expertise before I declare the NHibernate framework broken or myself crazy! I\'m trying to eagerly load a self-referencing tree with NHibernate and can successfully load most c开发者
Consider the following class hierarchy: public abstract class Entity { public virtual int Id { get; private set; }