1
我正在尋找一種方式,將entityCollection的功能Add
前的實際添加邏輯添加 當你有誰擁有entityCollection你可以做爲例實體:重寫add方法entityCollection
car.passengers.Add(passenger)
我要檢查有沒有超過5名乘客例如 ,所以我嘗試這樣的擴展:
static public void Add(this EntityCollection<passenger> Passenger, Passenger Passenger)
{
// some logique (in fact i want throw an exception here to force the utilisation of the controller)
}
你有什麼想法? 謝謝
實體框架用於數據訪問,而不是業務邏輯。這應該真正由您的業務邏輯層處理。 – cadrell0