ここでは、WPF で MVVM を使用しており、poco が含まれていることを確認しました。また、バニラのプロパティが含まれていることも読みました。
public class AccountCategory : IDataErrorInfo, IValidable
{
#region State Properties
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public AccountCategory ParentCategory { get; set; }
public bool Builtin { get; set; }
}
それは何ですか?linq to sql の Microsoft エンティティ フレームワークですか? なんで?