nHibernate 持久化 IList;
是否可以使用 nHibernate 持久保存 IList
?
public class Vendor
{
public virtual IList<DayOfWeek> OrderDays { get; private set; }
}
如果没有,有哪些常见的解决方案;使用 IList
为 OrderDays 创建一个类?
Is it possible to persist an IList<DayOfWeek>
using nHibernate?
public class Vendor
{
public virtual IList<DayOfWeek> OrderDays { get; private set; }
}
If not, what are some common solutions; creating a class for OrderDays?, using an IList<string>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然有可能...
VendorId
将是OrderDays
表中Vendor
的 FK 列(您可以自定义所有这些)Of course it's possible...
VendorId
would be the FK column toVendor
in theOrderDays
table (you can customize all of that)