0

エンティティ フレームワークのベスト プラクティスは次のとおりです。

1.CLR 型で外部キーを定義する

public class Book
{
    public int AuthorId{get;set;}
    public Author Author{get;set;}
}

2.外部キーを定義しない(ナビゲーションプロパティのみ定義)

public class Book
{
    public Author Author{get;set;}
}
4

1 に答える 1