fluent-nhibernate
fluent-nhibernate copied to clipboard
Fluent NHibernate!
Please create ability to map hidden collections as in native mapping by code (Set("ProtectedList")) Or possibility to add mappingByCode mappings to FluentConfiguration OneToMany and ManyToMany
How to set foregn key in map Join? ``` var joinTable="Category" Join(joinTable, j => { j.Optional(); j.KeyColumn("Id"); j.Map(p => p.CategoryName).Column("Name"); }); ``` I think must be: ``` var joinTable="Category"; var...
Hi.. I was thrilled when I found out how to use the Join() mapping method, but then was sad when I tried to nest it to join to another table...
//table CustomerArchives public virtual IList Evaluations { get; protected set; } // Relationships HasMany(x => x.Evaluations).Inverse().Cascade.All(); //table Evaluation public virtual CustomerArchives CustomerArchives { get; protected set; } // Relationships References(x...
its such a basic thing.. how come there is no such function? there is only DynamicUpdate, which applies to the entire entity
After updating to Nhibernate 5.0 from Nhibernate 3.1.0.4 and Fluent Nhibernate 2.1.0 from Fluent Nhibernate 1.2.0.712 the following issue started occurring. I have an object Container which contains a list...
On a general level I am not an expert in NHibernate or FluentNHibernate. I need your help to collect all the improvements and bugs that have been lost in the...
We can use this guide https://github.com/HerbFargus/Raspberry-Pi-Scripts/wiki/Github-Wiki-to-Mkdocs to convert our wiki to github pages with some cool theme. We need a mix of information between our current site and the wiki.
HasMany doesn't work well with collections of interfaces (especially when using Reveal) ``` public class Episode { private IList contributors = new List(); } public static OneToManyPart ChildType(this OneToManyPart part,...
I'd like to map a list of an interface This is my object: ``` public class Foo { public virtual IList Bars { get; protected set; } } ``` I...