0

我有一个域模型,它具有数据库中不存在的属性。例如 ...

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不是ArchiveIdentifierDomainModels 表中的列。当我运行查询时,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不是列?

4

2 回答 2

4

使用NotMappedAttribute

[NotMapped]
public Guid ArchiveIdentifier
{
    get { return Foo.ArchiveIdentifier; }
    set { Foo.ArchiveIdentifier = value; }
}
于 2012-12-27T18:20:31.190 回答
0

在 ArchiveIdentifier 属性上使用 [NotMapped] 数据注释

于 2012-12-27T18:23:17.697 回答