public KeyvalItemDto GetKeyvalitem(Guid id)
        {
            ExHelper.ThrowIf(id == Guid.Empty, "无效的查询参数");
            KeyvalItemDto dto = Dbc.Db.GetById <KeyvalItemDto>(id);

            return(dto);
        }
 public bool SetKeyvalitem(KeyvalItemDto dto)
 {
     CheckKeyvalitem(dto);//检查用户输入
     if (dto.Id != Guid.Empty)
     {
         KeyvalItemDto dbDto = Dbc.Db.GetById <KeyvalItemDto>(dto.Id);
         ExHelper.ThrowIfNull(dbDto, "查找更新记录失败.");
         dbDto.CopyTo(dto, a => a.Id);
     }
     Dbc.Db.Set(dto);
     return(true);
 }
 /// <summary>
 /// 检查校验Save对象
 /// </summary>
 /// <param name="dto">Dto 对象</param>
 /// <returns></returns>
 private void CheckKeyvalitem(KeyvalItemDto dto)
 {
 }