Nhibernate 搜索文档 id

发布于 2024-10-14 20:13:52 字数 251 浏览 1 评论 0原文

如果我的类派生自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情定在深秋 2024-10-21 20:13:52

如果您的类派生自基实体,则只需将该属性放在基类的属性上:

public class Entity
{
    [DocumentId]
    public int Id { get; set; }
}

您不必在派生类中重写它。

If your class derives from a base Entity, you just put the attribute on the property of the base class :

public class Entity
{
    [DocumentId]
    public int Id { get; set; }
}

You don't have to override it in derived classes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文