Ejemplo n.º 1
0
 public virtual void DeleteBySqlQuery(string sqlQuery)
 {
     using (var payroll = new CimsContext())
     {
         payroll.Database.ExecuteSqlCommand(sqlQuery);
     }
 }
Ejemplo n.º 2
0
 public GenericRepository(CimsContext context)
 {
     this.cimsContext = context;
     this.dbSet       = cimsContext.Set <T>();
 }