プライベート プロパティ セッターを使用してエンティティ クラスを生成するように EF を作成できますか?
例えば。私は何かが欲しい
public class MyTable
{
public Guid Id {get; private set;}
//... And so on and so forth, basically the class should hide the setters
}
プライベート プロパティ セッターを使用してエンティティ クラスを生成するように EF を作成できますか?
例えば。私は何かが欲しい
public class MyTable
{
public Guid Id {get; private set;}
//... And so on and so forth, basically the class should hide the setters
}