protected void Save() => _context.SaveChanges();
public long Insert(tblUser entity) { context.tblUsers.Add(entity); context.SaveChanges(); return(entity.ID); }