Fluent NHibernate:如何使用约定指定列名以供组件中参考?
可以创建 ComponentConvention,但此代码不起作用,因为 References 集合是 IManyToOneInspector 而不是 IManyToOneInstace 的集合。 还有其他方法指定列吗?
public class ComponentConvention : IComponentConvention
{
public void Apply(IComponentInstance instance)
{
foreach (var inspector in instance.References)
{
inspector.Column("some_name");
}
}
}
It is possible to create ComponentConvention, but this code does not work because References collection is collection of IManyToOneInspector and not IManyToOneInstace.
Is there any other way to specify column?
public class ComponentConvention : IComponentConvention
{
public void Apply(IComponentInstance instance)
{
foreach (var inspector in instance.References)
{
inspector.Column("some_name");
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遗憾的是,引用的公开方式与属性和 OneToOne 不同。
您可以使用反射访问底层 ComponentMapping,然后使用以下命令创建您自己的 ManyToOneInstances
Sadly References aren't exposed in the same way as Properties and OneToOnes.
You can access the underlying ComponentMapping with reflection and then create your own ManyToOneInstances with