fluent-nhibernate
fluent-nhibernate copied to clipboard
Fluent NHibernate!
When mapping an IUserType or an ICompositeUserType by convention there is no ability to specify defaults for the column names. I would like to be able to do something like...
Currently wiki says: "Note: ComponentMap's are incompatible with the automapper. If you're using the automapper then your ComponentMap's will be ignored." My idea is to find out why that is...
After reading about bugs and other issues here and on the mailing list, I see that it's common when the problem, being fixed in one version, comes back two versions...
We need to validate all the mappings and search for duplicates. For example, there can't be more than 1 ClassMap/SubclassMap for a particular class. Should be pretty easy
# Problem Mapping an enum property without specifying a custom type prevents using the imported enum type in HQL queries. e.g. ``` C# public class Foo { public Bar Status...
I'm having a bit of trouble with some SQL generated by my FluentNHibernate mappings. I'm not doing anything too complex, but unfortunately it's not behaving the way I would have...
Details here: https://groups.google.com/forum/?fromgroups=#!topic/fluent-nhibernate/Rjzmenll3Fo
I want to map this simple class: ``` public class Country { public virtual int Id { get; protected set; } public virtual string Code { get; protected set; }...
Hi all, I have a problem, when I'm trying map function from DB to property (obj). - Design from database [Contact] has many [ContactDetail]  And only one ContactDetail was...