如何使用 Fluent Nhibernate 映射整数数组

发布于 2024-11-10 08:29:58 字数 248 浏览 2 评论 0原文

我有一个课程

Class A
{
   public virtual int[] measurements { get; set; }
   public virtual int Id { get; private set; }
   public virtual string Instrument { get; set; } 
 }

如何使用 Fluent Hibernate 进行映射?

谢谢

I have a class

Class A
{
   public virtual int[] measurements { get; set; }
   public virtual int Id { get; private set; }
   public virtual string Instrument { get; set; } 
 }

How do I map using Fluent Hibernate?

thanks

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

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

发布评论

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

评论(2

生活了然无味 2024-11-17 08:29:58

您可以创建 .CustomType(typeof(SomeType)) 并将其映射到逗号分隔的字符串。
这不是我推荐的。

您可能最好创建第二个类来保存整数并使用 .HasMany 关系

You can create a .CustomType(typeof(SomeType)) and map it to a comma separated string.
This is not something I would recommend.

You are probably better of creating a second class to hold the ints and using a .HasMany relationship

天邊彩虹 2024-11-17 08:29:58

mapping.HasMany(x => x.measurements).Element("Value");

您可以将 Value 更改为您希望为列命名的任何内容。

mapping.HasMany(x => x.measurements).Element("Value");

You can change Value to whatever you want your column to be named.

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