How do you map an enum as an int value with fluent NHibernate?

后端 未结 7 1943
迷失自我
迷失自我 2020-11-27 11:04

Question says it all really, the default is for it to map as a string but I need it to map as an int.

I\'m currently using Persistenc

相关标签:
7条回答
  • 2020-11-27 11:14

    For those using Fluent NHibernate with Automapping (and potentially an IoC container):

    The IUserTypeConvention is as @Julien's answer above: https://stackoverflow.com/a/1706462/878612

    public class EnumConvention : IUserTypeConvention
    {
        public void Accept(IAcceptanceCriteria<IPropertyInspector> criteria)
        {
            criteria.Expect(x => x.Property.PropertyType.IsEnum);
        }
    
        public void Apply(IPropertyInstance target)
        {
            target.CustomType(target.Property.PropertyType);
        }
    }
    

    The Fluent NHibernate Automapping configuration could be configured like this:

        protected virtual ISessionFactory CreateSessionFactory()
        {
            return Fluently.Configure()
                .Database(SetupDatabase)
                .Mappings(mappingConfiguration =>
                    {
                        mappingConfiguration.AutoMappings
                            .Add(CreateAutomappings);
                    }
                ).BuildSessionFactory();
        }
    
        protected virtual IPersistenceConfigurer SetupDatabase()
        {
            return MsSqlConfiguration.MsSql2008.UseOuterJoin()
            .ConnectionString(x => 
                 x.FromConnectionStringWithKey("AppDatabase")) // In Web.config
            .ShowSql();
        }
    
        protected static AutoPersistenceModel CreateAutomappings()
        {
            return AutoMap.AssemblyOf<ClassInAnAssemblyToBeMapped>(
                new EntityAutomapConfiguration())
                .Conventions.Setup(c =>
                    {
                        // Other IUserTypeConvention classes here
                        c.Add<EnumConvention>();
                    });
        }
    

    *Then the CreateSessionFactory can be utilized in an IoC such as Castle Windsor (using a PersistenceFacility and installer) easily. *

        Kernel.Register(
            Component.For<ISessionFactory>()
                .UsingFactoryMethod(() => CreateSessionFactory()),
                Component.For<ISession>()
                .UsingFactoryMethod(k => k.Resolve<ISessionFactory>().OpenSession())
                .LifestylePerWebRequest() 
        );
    
    0 讨论(0)
  • 2020-11-27 11:17

    The way to define this convention changed sometimes ago, it's now :

    public class EnumConvention : IUserTypeConvention
    {
        public void Accept(IAcceptanceCriteria<IPropertyInspector> criteria)
        {
            criteria.Expect(x => x.Property.PropertyType.IsEnum);
        }
    
        public void Apply(IPropertyInstance target)
        {
            target.CustomType(target.Property.PropertyType);
        }
    }
    
    0 讨论(0)
  • 2020-11-27 11:25

    You could create an NHibernate IUserType, and specify it using CustomTypeIs<T>() on the property map.

    0 讨论(0)
  • 2020-11-27 11:31

    You should keep the values as int / tinyint in your DB Table. For mapping your enum you need to specify mapping correctly. Please see below mapping and enum sample,

    Mapping Class

    public class TransactionMap : ClassMap Transaction
    {
        public TransactionMap()
        {
            //Other mappings
            .....
            //Mapping for enum
            Map(x => x.Status, "Status").CustomType();
    
            Table("Transaction");
        }
    }
    

    Enum

    public enum TransactionStatus
    {
       Waiting = 1,
       Processed = 2,
       RolledBack = 3,
       Blocked = 4,
       Refunded = 5,
       AlreadyProcessed = 6,
    }
    0 讨论(0)
  • 2020-11-27 11:33

    Don't forget about nullable enums (like ExampleEnum? ExampleProperty)! They need to be checked separately. This is how it's done with the new FNH style configuration:

    public class EnumConvention : IUserTypeConvention
    {
        public void Accept(IAcceptanceCriteria<IPropertyInspector> criteria)
        {
            criteria.Expect(x => x.Property.PropertyType.IsEnum ||
                (x.Property.PropertyType.IsGenericType && 
                 x.Property.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>) &&
                 x.Property.PropertyType.GetGenericArguments()[0].IsEnum)
                );
        }
    
        public void Apply(IPropertyInstance target)
        {
            target.CustomType(target.Property.PropertyType);
        }
    }
    
    0 讨论(0)
  • 2020-11-27 11:34

    So, as mentioned, getting the latest version of Fluent NHibernate off the trunk got me to where I needed to be. An example mapping for an enum with the latest code is:

    Map(quote => quote.Status).CustomTypeIs(typeof(QuoteStatus));
    

    The custom type forces it to be handled as an instance of the enum rather than using the GenericEnumMapper<TEnum>.

    I'm actually considering submitting a patch to be able to change between a enum mapper that persists a string and one that persists an int as that seems like something you should be able to set as a convention.


    This popped up on my recent activity and things have changed in the newer versions of Fluent NHibernate to make this easier.

    To make all enums be mapped as integers you can now create a convention like so:

    public class EnumConvention : IUserTypeConvention
    {
        public bool Accept(IProperty target)
        {
            return target.PropertyType.IsEnum;
        }
    
        public void Apply(IProperty target)
        {
            target.CustomTypeIs(target.PropertyType);
        }
    
        public bool Accept(Type type)
        {
            return type.IsEnum;
        }
    }
    

    Then your mapping only has to be:

    Map(quote => quote.Status);
    

    You add the convention to your Fluent NHibernate mapping like so;

    Fluently.Configure(nHibConfig)
        .Mappings(mappingConfiguration =>
        {
            mappingConfiguration.FluentMappings
                .ConventionDiscovery.AddFromAssemblyOf<EnumConvention>();
        })
        ./* other configuration */
    
    0 讨论(0)
提交回复
热议问题