在这里,我在 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 实体框架吗?为什么?