使用自定义 C# 属性来选择 Fluent 约定
假设您有一组适用于特定映射组的 Fluent 约定,但不适用于所有映射组。
我的想法是,我将创建可应用于 Fluent *Map 类的自定义 C# 属性 - 并编写约定,通过检查 *Map 类以查看是否应用了自定义属性来确定接受。
这样,我可以选择约定组并将它们应用到各种映射,只需使用自定义属性标记它们 - [UseShortNamingConvention] 等。
我是 NHibernate(以及 Fluent 和 C# 的新手) - 这是这种方法可能的?
这是理智的吗? :-)
谢谢!
Suppose you have sets of Fluent conventions that apply to specific groups of mappings, but not to all of them.
My thought here was, I'll create custom C# attributes that I can apply to the Fluent *Map classes - and write conventions that determine acceptance by inspecting the *Map class to see if the custom attribute was applied.
That way, I can select groups of conventions and apply them to various mappings by just tagging them with a custom attribute - [UseShortNamingConvention], etc.
I'm new to NHibernate (and Fluent, and C# for that matter) - is this approach possible?
And is it sane? :-)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的!我实际上做了类似的事情,但是使用了标记接口(INotCacheable、IComponent),但是标记接口或属性应该没有那么大的区别。
当应用您的约定时,只需检查您的属性是否存在并且您的状态良好:)
编辑:
添加一些代码示例
Yes it is! Ive actually done something similiar but went with Marker Interfaces instead (INotCacheable, IComponent), but Marker Interface or Attribute, should't be that much of a difference.
When applying your conventions, just check for the presence of your attribute and ur good :)
EDIT:
Adding some code samples