I found him. I need to change PrimaryKeyConvention of Fluent and install on native.
public class PrimaryKeyConvention : IIdConvention
{
public void Apply(FluentNHibernate.Conventions.Instances.IIdentityInstance instance)
{
instance.Column("Id");
instance.UnsavedValue("0");
instance.GeneratedBy.Native();
}
}
source
share