Nhibernate 搜索文档 id
如果我的类派生自 Entity,如何使用属性定义 nhibernate search/lucene.net 所需的 documentid?
这是最好的方法吗:
[DocumentId]
public virtual int Id
{
get { return base.Id; }
protected set { base.Id = value; }
}
谢谢。
基督教
If my class derives from Entity how do I define the documentid needed for nhibernate search/lucene.net using attributes?
Is this the best way:
[DocumentId]
public virtual int Id
{
get { return base.Id; }
protected set { base.Id = value; }
}
Thanks.
Christian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的类派生自基实体,则只需将该属性放在基类的属性上:
您不必在派生类中重写它。
If your class derives from a base Entity, you just put the attribute on the property of the base class :
You don't have to override it in derived classes.