我首先将我的 EF POCO 项目转换为代码。我更改了 T4 模板,因此我的所有实体都使用一个基类 ,EntityBase
它为它们提供了一些与持久性无关的通用功能。
如果我[NotMapped]
在 上使用属性EntityBase
,则所有实体都继承此属性,并且The type 'X.X.Person' was not mapped
对于我尝试与 EF 一起使用的任何类型,我都会得到一个。
如果我[NotMapped]
在 的所有属性上使用EntityBase
,我会遇到EntityType 'EntityBase' has no key defined. Define the key for this EntityType
异常
仅供参考:我使用 Ef 4.3.1
编辑:部分代码:
[DataContract(IsReference = true)]
public abstract class EntityBase : INotifyPropertyChanged, INotifyPropertyChanging
{
[NotMapped]
public virtual int? Key
{
get { return GetKeyExtractor(ConversionHelper.GetEntityType(this))(this); }
}
//other properties and methods!
}
接着
[DataContract(IsReference = true), Table("Person", Schema = "PER")]
public abstract partial class Person : BaseClasses.EntityBase, ISelfInitializer
{
#region Primitive Properties
private int? _personID;
[DataMember,Key]
public virtual int? PersonID
{
get{ return _personID; }
set{ SetPropertyValue<int?>(ref _personID, value, "PersonID"); }
}
}
对于这两个类,没有流畅的 api 配置。