在我的应用程序中,有很多情况下我必须更新数据库中实体的一个属性。在互联网上,我读到DynamicUpdate()
应该改变 Fluent NHibernate 的行为,所以它只会更新属性!= null
所以我这样写了我的映射:
public class Building
{
public virtual Guid Id { get; set; }
public virtual int ConstructionPhase { get; set; }
public virtual string Name { get; set; }
[some other properties]
}
public class BuildingMap : ClassMap<Building>, IMappedEntity
{
public BuildingMap()
{
DynamicUpdate();
SelectBeforeUpdate();
Id(x => x.Id);
Map(x => x.ConstructionPhase);
Map(x => x.Name);
[some other properties]
}
}
但是,如果我尝试更新实体并将name
属性留空,则会在数据库中删除该名称。
我是否必须以其他方式配置 Fluent NHibernate,或者有什么问题?