我在想有什么方法可以确定 CodeFirst 中属性加载的顺序,例如我有一个如下所示的类:
public Class
{
public string Propert1{get;set;}
public string Propert2{get;set;}
public List<string> PropertList{get;set;}
}
而且我需要让EF在property1之前加载ProprtyList!(因为我在Property1_Changed上操作ProprtyList值)。