public long Add(GroupInfo entity, bool ignorePk = true) { if (ignorePk) { return(DataAccessProxy.Add(entity, x => new { x.Id })); } else { return(DataAccessProxy.Add(entity)); } }
public long Add(List <GroupInfo> entitys, bool ignorePk = true) { return(DataAccessProxy.Add(entitys)); }