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

See: https://groups.google.com/forum/#!topic/fluent-nhibernate/gs-wnmjiZ-M/discussion Couldn't reproduce, but could be something to do with `ExportTo` being called first.

bug
needTests

I have a IDictionary dictionary in my class. I try to map this with FluentNHibernate but it creates a wrong mapping. The application shows that it generates a map using...

api enhancement

Patch from Robert, not sure why this never got applied. Will review post-1.1. ``` public class Indexes : FluentIndexBase { public Indexes(Configuration configuration) : base(configuration) { AddDialectScope("NHibernate.Dialect.MsSql2005Dialect"); ClusteredIndex().OnPrimaryKey(); UniqueNonClusteredIndex().OnProperty(x =>...

feature

I have a tree structured model and designed it with composite Pattern. for iterating through the entire hierachy Im using Composite Iteration. here is the source code: http://www.mediafire.com/download/v78f97mt51y27j6/Fluent-NHibernate-MVC-3_Combat.rar but when...

I have been successful using Custom identity generator my code is as below Id(x => x.Id).GeneratedBy.Custom(p => p.AddParam("ENT", "5")) But when ever custom id generation is turned on for any...

possibleBug
needResearch

Hi, Is it by design that a UserTypeConvention isn't applied to primary keys? If so, I think it should be advertised somewhere. If not, I just found a bug.

possibleBug
needResearch

This is situation to research, actually - courtesy of @robscottnh via email conversation. If you specify a formula to create a calculated property in a mapped class, fluent always adds...

possibleBug
needResearch

This issue originated as a discussion on the fluent nhibernate google group: https://groups.google.com/d/msg/fluent-nhibernate/ZgZwAYggeJY/eSPreHRWzhcJ I believe this is new in Fluent NHibernate 1.3 due to this change: https://github.com/jagregory/fluent-nhibernate/commit/f3186cba6182178c01377f7218df21317ca577de#diff-156 As I understand...

needResearch

Currently the `MemberAccessResolver` isn't used for component properties mapped with a `ComponentMap`. Additionally there is no way to use the `Access` object which is returned from the `MemberAccessResolver` to specify...

api enhancement
needResearch