我在想,有沒有什麼辦法確定CodeFirst財產的加載順序,比如我有一個類象下面這樣:!如何確定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值)。
我不能讓它只讀。它是一個導航屬性。 –
那麼,爲什麼你需要操作Property1_Changed上的'ProprtyList值,如果它直接從數據庫中加載? –