fluent-nhibernate icon indicating copy to clipboard operation
fluent-nhibernate copied to clipboard

Fluent NHibernate!

Results 169 fluent-nhibernate issues
Sort by recently updated
recently updated
newest added

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...

api enhancement

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...

bug
needResearch

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

feature

# 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...

bug

SubclassMap doesn't work with automapping.

bug

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

possibleBug
needResearch

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] ![tttt.png](https://f.cloud.github.com/assets/3005971/3125/8e49def2-42a8-11e2-85de-ca18099b1e53.png) And only one ContactDetail was...