データベースに存在しないプロパティを持つドメインモデルがあります。例えば ...
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; }
}
ご覧のとおり、DomainModelsテーブルの列ではなくプロパティを確認できKey
ます。ArchiveIdentifier
クエリを実行すると、EntityFrameworkはプロパティArchiveIdentifier
をデータベースの列であるかのように扱います。これは、すべてのDomainModelをフェッチするときに生成される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
、テーブル内の列であるかのように扱います。列ではないEntityFrameworkに通知するための注釈またはメソッドはありArchiveIdentifier
ますか?