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

Hello, I have this configuration: Development.cs HasMany (x => x.Assets) .KeyColumn ("Promotion_ID"). NotFound.Ignore (). LazyLoad (). Cascade.AllDeleteOrphan (). AsSet (); Asset.cs References(x => x.Estate).Column("EstateId").NotFound.Ignore().Fetch.Join().LazyLoad().ReadOnly(); References(x => x.Property).Column("PropertyId").NotFound.Ignore().Fetch.Join().LazyLoad().ReadOnly(); When I do...

Hello, It seems like `HasMany().Not.KeyNullable()` not quite properly generates DDL with SchemaExport. Assuming it should output NOT NULL FK column on the child side. However what I get is NULLable...

Hello, I couldn't find this in the documentation but can someone please explain the purpose of `OptimisticLock.Version()` inside a classmap? From what i can tell, it does nothing. The below...

I am using fluent nHibernate with SQLite. And I am working with UTC-DateTime in my code. I added "DateTimeKind=Utc" to my sqllite connection string, and I am telling nHibernate that...

Hi! I seem to be running into an issue where orphaned records are not getting deleted, and would be very grateful for any advice. We have a Medication class. Each...

Hi and thanks for the awesome lib! One issue I have is GenericEnumMapper (or related code) is that it is emitting quite a lot of debug messages when it performs...

Hi guys, Recently I tried to port a logic from a WPF application to a Xamarin.Forms app. Both are using NHibernate with SQLite. At first, it seemed easy but I...

This PR adds an option to load internal IAutoMappingOverrides from an assembly.

Currently, Fluent NHibernate uses only the **case-insensitive** name of the type in PropertyPart.CustomType() because it uses the constructor TypeReference(string) instead of TypeReference(Type). This leads to problems if there are two...

When a table name is already set it shouldn't be overriden.

bug
needTests