FluentNHibernate - ClassMap 与 IAutoMappingOverride
在 FluentNHibernate 中,何时应该对 EntityMap 类使用 ClassMap
以及何时使用 IAutoMappingOverride
。
public class PostMap : ClassMap<Post>
{
public PostMap()
{
...
}
}
与
public class PostMap : IAutoMappingOverride<Post>
{
public void Override(AutoMapping<Post> mapping)
{
...
}
}
In FluentNHibernate when should I use ClassMap
and when IAutoMappingOverride<Entity>
for my EntityMap classes.
public class PostMap : ClassMap<Post>
{
public PostMap()
{
...
}
}
vs
public class PostMap : IAutoMappingOverride<Post>
{
public void Override(AutoMapping<Post> mapping)
{
...
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ClassMap 在手动映射实体时使用。在这种情况下,您为每个实体创建一个单独的 ClassMap,指定该实体如何映射到数据库。
IAutoMappingOverrides 在使用 AutoMapping 映射实体时使用。当使用 AutoMapping Fluent 时,NHibernate 尝试自动找出实体应如何映射到数据库,但有时自动生成的映射并不完全是您想要的,因此您必须覆盖需要调整的部分。在这种情况下,您可以为需要覆盖自动映射的每个实体创建映射覆盖,并仅覆盖这些部分。
更多信息可以在 Fluent NHibernate wiki 中找到:
ClassMaps are used when manually mapping your entities. In that case you create a separate ClassMap for every entity which specifies how that entity is mapped to the database.
IAutoMappingOverrides are used when mapping your entities with AutoMapping. When using AutoMapping Fluent NHibernate tries to automatically figure out how the entities should be mapped to the database, but sometimes the automatically generated mappings are not quite what you wanted, so you have to override the parts that need tweaking. In that case you create a mapping override for each entity who's auto mapping needs to be overridden, and override only those parts.
More info can be found at the Fluent NHibernate wiki: