I have this class: public class MyEntity { public virtual int Id { get; set; } public virtual IList<Point> Vectors { get; set; }
I have a root object that has a property that is a collection. For example: I have a Shelf object that has Books.
I\'m mapping a very simple Users table, and i have a column named \'LastLoginDate\' which is defined as nullable in sql server.
Having some difficulty understanding the best way to implement subclasses with a generic repository using Fluent NHibernate.
I have 2 classes that have a many to many relationship. What i\'d like to happen is that whenever i delete one side ONLY the association records will be deleted with no concern which side i delete.
Okay, so yesterday I managed to get the latest trunk builds of NHibernate and FluentNHibernate to work with my latest little project. (I\'m working on a bug tracking application.) I created a nice dat
is anyone building the truck NHibernate and FluentNhibernate together?How\'s it working? are you using it for production systems?
I have the current scenario whereby an Article has only 1 Outcome each. Each Article may or may not have an Outcome.
I\'m trying to get into using Fluent NHibernate,开发者_JAVA技巧 and I have a couple questions.I\'m finding the documentation to be lacking.
Basically, I have an ImageMetadata class and an Image class, which derives from ImageMetadata. Image adds one property: byte[] Content, which actually contains binary data.