예제 #1
0
 public static bool Save(this IRCoreEntitiesSite db)
 {
     return(((DbContext)db).Save());
 }
예제 #2
0
 public static bool Save <T>(this IRCoreEntitiesSite db, T obj, bool updateDataBase = true, bool withException = false, params string[] pkNames) where T : class
 {
     return(((DbContext)db).Save(obj, updateDataBase, withException, pkNames));
 }