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