是否可以使用Fluent NHibernate生成表索引以及数据库模式的其余部分?我希望能够通过自动构建过程生成完整的数据库DDL。
答案 0 :(得分:48)
在更新版本的Fluent NHibernate中,您可以调用Index()
方法来执行此操作,而不是使用SetAttribute
(不再存在):
Map(x => x.Prop1).Index("idx__Prop1");
答案 1 :(得分:15)
你的意思是列上的索引吗?
您可以在ClassMap<...>
文件中手动添加.SetAttribute("index", "nameOfMyIndex")
,例如像这样:
Map(c => c.FirstName).SetAttribute("index", "idx__firstname");
或者您可以使用自动播放器的属性功能来实现 - 例如像这样:
创建持久性模型后:
{
var model = new AutoPersistenceModel
{
(...)
}
model.Conventions.ForAttribute<IndexedAttribute>(ApplyIndex);
}
void ApplyIndex(IndexedAttribute attr, IProperty info)
{
info.SetAttribute("index", "idx__" + info.Property.Name");
}
然后对您的实体执行此操作:
[Indexed]
public virtual string FirstName { get; set; }
我喜欢后者。在对您的域模型不是非侵入性的情况下,仍然是非常有效且明确正在发生的事情之间是一个很好的妥协。
答案 2 :(得分:10)
Mookid的回答非常好,对我帮助很大,但同时不断发展的Fluent NHibernate API也发生了变化。
所以,现在编写mookid样本的正确方法如下:
//...
model.ConventionDiscovery.Setup(s =>
{
s.Add<IndexedPropertyConvention>();
//other conventions to add...
});
其中IndexedPropertyConvention如下:
public class IndexedPropertyConvention : AttributePropertyConvention<IndexedAttribute>
{
protected override void Apply(IndexedAttribute attribute, IProperty target)
{
target.SetAttribute("index", "idx__" + target.Property.Name);
}
}
[Indexed]属性现在的工作方式相同。