我有一个域模型,它具有数据库中不存在的属性。例如 ...
public class DomainModel: IKeyedEntity
{
//Id for the table
public int DomainModelID { get; set; }
//Foreign key value
public int FooID { get; set; }
//Text value
public string Value { get; set; }
//Generic reference to the id of the table
public int Key { get { return this.DomainModelID; } }
//No a column in the database
public Guid ArchiveIdentifier
{
get { return Foo.ArchiveIdentifier; }
set { Foo.ArchiveIdentifier = value }
}
//Navigation Property
public virtual Foo Foo { get; set; }
}
如您所见,这些属性Key
不是ArchiveIdentifier
DomainModels 表中的列。当我运行查询时,Entity Framework 将属性ArchiveIdentifier
视为数据库中的列。这是获取所有 DomainModels 时生成的 SQL 的示例。
SELECT
[Extent1].[DomainModelID] AS [DomainModelID],
[Extent1].[FooID] AS [FooID],
[Extent1].[Value] AS [Value],
[Extent1].[ArchiveIdentifier] AS [ArchiveIdentifier]
FROM [dbo].[DomainModels] AS [Extent1]
Entity Framework 不会尝试填充该Key
属性,因为它没有 set 方法,但它会将其视为ArchiveIdentifier
表中的列。是否有任何注释或方法告诉实体框架ArchiveIdentifier
不是列?