IAuditable
クラス ドメインを監査可能として定義するインターフェイスがあります。
public interface IAuditable
{
DateTime CreateAt { get; }
IUser CreateBy { get; }
DateTime? UpdateAt { get; }
IUser UpdateBy { get; }
}
このインターフェイスを実装するこれらのクラス (多数あります) の構成は同じです。そこで、慣例をオーバーライドすることにしました。
public class AudityConvention : IAutoMappingOverride<IAuditable>
{
public void Override(AutoMapping<IAuditable> mapping)
{
mapping.Map(p => p.CreateAt).ReadOnly().Access.Property().Not.Nullable().Not.Update().Default("getDate()").Generated.Insert();
mapping.References<Usuario>(p => p.CreateBy).Not.Nullable().Not.Update();
mapping.Map(p => p.UpdateAt).ReadOnly().Access.Property().Default("getDate()").Not.Insert().Generated.Always();
mapping.References<Usuario>(p => p.UpdateBy).Nullable().Not.Insert();
}
}
そしてそれを構成する
_configuration = Fluently.Configure() // All config from app.config
.Mappings(m =>
{
m.AutoMappings.Add(
AutoMap.AssemblyOf<Usuario>()
.UseOverridesFromAssemblyOf<AudityConvention>()
.Conventions.Setup(c => c.AddFromAssemblyOf<EnumConvention>())
);
m.FluentMappings
.AddFromAssemblyOf<UsuarioMap>()
.Conventions.AddFromAssemblyOf<EnumConvention>()
;
})
.BuildConfiguration();
SessionFactory = _configuration.BuildSessionFactory();
Session = SessionFactory.OpenSession();
var export = new SchemaExport(_configuration);
export.Drop(false, true); // drop and recreate the database (Just to make sure that the settings are being applied)
export.Execute(false, true, false); // Create de database
このapp.configで
<appSettings>
<add key="FluentAssertions.TestFramework" value="mstest"/>
</appSettings>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="dialect">NHibernate.Dialect.MsSql2008Dialect</property>
<property name="connection.connection_string_name">Data</property>
<property name="show_sql">true</property>
</session-factory>
</hibernate-configuration>
ドメイン クラスの例:
public class Entidade : IAuditable
{
public virtual int Id { get; protected set; }
[StringLength(255)]
public virtual string Nome { get; set; }
// Implements IAuditable
public virtual DateTime CreateAt { get; protected set; }
public virtual IUser CreateBy { get; set; }
public virtual DateTime? UpdateAt { get; protected set; }
public virtual IUser UpdateBy { get; set; }
}
そしてそれをマッピングします:
public class EntidadeMap : ClassMap<Entidade>
{
public EntidadeMap()
{
Id(p => p.Id);
Map(p => p.Nome);
Table("Entidades");
}
}
結果:
質問
私は何を間違っていますか?設定を実装するすべてのクラスの規則を作成する方法IAuditable
は同じです!
以下の構成の部分は後で追加されました。AutoMappings
私が読んだことから、慣習のみによってサポートを上書きします。
m.AutoMappings.Add(
AutoMap.AssemblyOf<Usuario>()
.UseOverridesFromAssemblyOf<AudityConvention>()
.Conventions.Setup(c => c.AddFromAssemblyOf<EnumConvention>())
);