如何使用 Fluent Nhibernate 的 AutoPersistenceModel 忽略组件的属性?

发布于 2024-08-29 09:48:47 字数 490 浏览 2 评论 0原文

我正在使用 Fluent NHibernate AutoMappings 来映射我的实体,包括一些组件对象。 其中一个组件对象包含如下属性:

public string Value 
{ 
  set _value = value; 
}

这会导致 NHibernate.PropertyNotFoundException:“无法找到属性‘Value’的 getter...”

我想忽略此属性。

我尝试为组件类创建 IAutoMappingOverride,但出于同样的原因,我无法使用 AutoMapping<>.IgnoreProperty(x => x.Value) 。 “属性或索引器‘MyComponent.Value’不能在这种情况下使用,因为它缺少 get 访问器”

我还查看了 IComponentConvention,但看不到如何使用此约定更改映射。

任何帮助将不胜感激...

谢谢

I am using Fluent NHibernate AutoMappings to map my entities, including a few component objects.
One of the component objects includes a property like the following:

public string Value 
{ 
  set _value = value; 
}

This causes an NHibernate.PropertyNotFoundException: "Could not find a getter for property 'Value'..."

I want to ignore this property.

I tried creating an IAutoMappingOverride for the component class but I couldn't use AutoMapping<>.IgnoreProperty(x => x.Value) for the same reason.
"The property or indexer 'MyComponent.Value' cannot be used in this context because it lacks the get accessor"

I've also looked at IComponentConvention but can't see anyway of altering the mappings with this convention.

Any help would be appreciated...

Thanks

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

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

发布评论

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

评论(5

一个人的夜不怕黑 2024-09-05 09:48:47

您可以使用:

Reveal.Member<Owner, object> ("Value")`.

例如

mapping.IgnoreProperty(Reveal.Member<Owner, object> ("Value")

Reveal.Member 可以在 Fluent NHibernate 需要表达式的任何地方使用。这可用于公开私有/受保护的属性和字段。

You can use:

Reveal.Member<Owner, object> ("Value")`.

Eg

mapping.IgnoreProperty(Reveal.Member<Owner, object> ("Value")

Reveal.Member can be used anywhere Fluent NHibernate expects an expression. This can be used to expose private/protected properties and fields.

她比我温柔 2024-09-05 09:48:47

您可以在映射文件中使用 OverrideAll()。如果您不知道它将成为其成员的类型,那么您需要使用此版本将成员指定为字符串。以下是 Fluent Nhibernate Wiki 中的示例。

.OverrideAll(map =>  
{  
  map.IgnoreProperty("YourProperty");
});

You can use OverrideAll() in your mapping file. If you don't know the type that it will be a member of, then you need to use this version specify the member as a string. Here's the example from the Fluent Nhibernate Wiki.

.OverrideAll(map =>  
{  
  map.IgnoreProperty("YourProperty");
});
离鸿 2024-09-05 09:48:47

如果您向属性添加私有 Get 方法,您也许能够使覆盖起作用。

You might be able to get the override to work if you add a private Get method to your property.

走过海棠暮 2024-09-05 09:48:47

我已经尝试过私有和受保护的 get 访问器,但除非访问器是公共的,否则覆盖不会编译。

“属性或索引器不能在此上下文中使用,因为它缺少 get 访问器”

I've tried both a private and protected get accessor but the override won't compile unless the accessor is public.

"The property or indexer cannot be used in this context because it lacks the get accessor"

口干舌燥 2024-09-05 09:48:47

您可以添加公共 getter 抛出 NotSupportedException 以使编译器满意:

public virtual string Value 
{ 
    get { throw new NotSupportedException(); }
    set { _value = value; }
}

You can add public getter throwing NotSupportedException to make compiler happy:

public virtual string Value 
{ 
    get { throw new NotSupportedException(); }
    set { _value = value; }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文