本文介绍了夏普建筑/流利的NHibernate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
DomainSignature属性在数据库中创建唯一约束吗?
Does DomainSignature attribute create unique constrain in DB?
Fluent NHibernate 1.1.0.685是否正确支持NaturalId?
Does Fluent NHibernate 1.1.0.685 supports NaturalId correctly?
推荐答案
域签名不会在数据库中创建约束.
Domain signature doesn't create constraints in DB.
是的Fluent NH支持
Yes Fluent NH supports Natural ID by
map.NaturalId()
.Property(x => x.Name)
.Property(x => x.NickName);
语法
这篇关于夏普建筑/流利的NHibernate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!