如何使我的属性约定忽略具有公式的映射?

发布于 2024-10-15 12:44:27 字数 605 浏览 3 评论 0原文

有人可以告诉我如何使我的属性约定忽略具有公式的映射吗?

这是实体:

public class User
{
    public virtual int Id {get; set;}
    public virtual string FirstName {get; set;}
    public virtual string LastName {get; set;}
    public virtual string FullName {get; set;}
}

这是映射:

public class UserMap : ClassMap<User>
{
    public UserMap()
    {
        Id(x => x.Id);
        Map(x => x.FirstName);
        Map(x => x.LastName);
        Map(x => x.FullName).Formula("first_name || ' ' || last_name");
    }
}

我希望我的属性约定忽略 FullName 属性。 感谢您的帮助

Can someone tell me how to make my property convention ignore a mapping that has formula?

This is the entity:

public class User
{
    public virtual int Id {get; set;}
    public virtual string FirstName {get; set;}
    public virtual string LastName {get; set;}
    public virtual string FullName {get; set;}
}

This is the mapping:

public class UserMap : ClassMap<User>
{
    public UserMap()
    {
        Id(x => x.Id);
        Map(x => x.FirstName);
        Map(x => x.LastName);
        Map(x => x.FullName).Formula("first_name || ' ' || last_name");
    }
}

I want my property convention to ignore the FullName property.
Thanks for helping

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

离鸿 2024-10-22 12:44:27

您的约定是否实施 IConventionAcceptance(或等效的 IPropertyConventionAcceptance)?从那里,在 Accept 方法中,您可以访问“Formula”属性并相应地返回 true/false。这将阻止您的约定处理该属性。

Is your convention implementing IConventionAcceptance (or the equivalent IPropertyConventionAcceptance)? From there, within the Accept method, you can access the "Formula" property and return true/false appropriately. This will prevent your convention from processing the property.

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