예제 #1
0
 protected void Save() => _context.SaveChanges();
예제 #2
0
 public long Insert(tblUser entity)
 {
     context.tblUsers.Add(entity);
     context.SaveChanges();
     return(entity.ID);
 }