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

For instance, I'd like to be able to create some class: ``` public class MyClassMap : ClassMap { public MyClassMap(object argumentOne, object argumentTwo) { // leverage arguments to further customize...

I've recently discovered the `SchemaMetadataUpdater.QuoteTableAndColumns` setting when you configure fluent nhibernate. This options tells nhibernate to escape all table and column names. For example a column named `Key` will be...

May I request that the method Equals on the class FluentNHibernate.Data.Entity return false when both have 0 ids, since that indicates they have not been created yet, and are not...

Hello :), i needed a posibility to distinguish in the FluentMapping-Files -> Call constructor with parameters. So i have developed an function for inject parameters into a mapping (FluentMapping). I...

Whatever should be the underlying type, say ``IConvention``, then ``IList`` should be implemented. I don't know why it wouldn't be.

I have created auto mapping which maps Dictionary into table like this: ``` public class PostOverrides : IAutoMappingOverride { public void Override(AutoMapping mapping) { mapping.HasMany(x => x.Properties).AsMap( index => index.Column("PropertyKey").Type(),...

It seems that CheckList enforces ordering on the lists that it checks. I have a many-to-many relationship between Users and Roles as follows: ``` public UserMap() { Id(x => x.Id);...

bug

Per discussion in #296 Apparently, Fluent has no way of saying "outer-join"=true when specifying a collection mapping

feature
jump-in

Yesterday I grab last available sources of FNH to make it possible to use it with NH 3.2.0.4GA. But after update to new version (1.3) I start getting the following...

I found the service lately that allows to track code coverage of a project - https://coveralls.io/. It's free for open-source projects. I thinks it'll be very nice to have coverage...

needResearch
infrastructure