當模型被實體框架加載時,我想將某些東西注入到模型中。將實體框架注入到模型中
考慮以下用戶模型。我希望實體框架在執行context.Users.Where(somequery)時執行,將SomeReference注入每個從數據庫加載的用戶。
public class User {
public string Username {get; set;}
public User(SomeReference ref)
{
}
}
我在哪裏可以註冊?
檢索各種價值觀完美的作品滿足我的需求 –