如何从 ASP.NET Core 6 API 中的数据库中获取最大数量或使用 Entity Framework Core 替换 DTO 字段?
How to fetch max number from the database in ASP.NET Core 6 API or replace the DTO field using Entity Framework Core?
我的要求是从数据库中获取最大数量并添加 +1 以使其不同。我可以使用自增ID,但根据要求不同
try
{
logger.LogInformation($"Patient registered successfully");
var patient = mapper.Map<Patient>(patientCreateDTO);
await _context.Patient.AddAsync(patient);
await _context.SaveChangesAsync();
return CreatedAtAction("GetPatient", new { id = patient.Id }, patient);
}
catch (Exception e)
{
logger.LogError(e, $" Error performing post in {nameof(PostPatient)}");
return StatusCode(500, Messages.Error500Message);
}
我解决了从 asp.net 核心 6 中的数据库中获取最大数量的问题。将任何 DTO 字段从 NULL 替换为没有请求主体的控制器端的默认值
try
{
logger.LogInformation($"Patient Registred Successfully");
var maxNumber= await _context.Patient.MaxAsync(e => e.Uhid);
maxNumber+= 1;
var patient = mapper.Map<Patient>(patientCreateDTO);
if(maxNumber== null)
{
maxNumber= 1;
}
patient.Uhid = maxNumber;
await _context.Patient.AddAsync(patient);
await _context.SaveChangesAsync();
return CreatedAtAction("GetPatient", new { id = patient.Id }, patient);
}
catch (Exception e)
{
logger.LogError(e, $" Error Performing Post in {nameof(PostPatient)}");
return StatusCode(500, Messages.Error500Message);
}
我的要求是从数据库中获取最大数量并添加 +1 以使其不同。我可以使用自增ID,但根据要求不同
try
{
logger.LogInformation($"Patient registered successfully");
var patient = mapper.Map<Patient>(patientCreateDTO);
await _context.Patient.AddAsync(patient);
await _context.SaveChangesAsync();
return CreatedAtAction("GetPatient", new { id = patient.Id }, patient);
}
catch (Exception e)
{
logger.LogError(e, $" Error performing post in {nameof(PostPatient)}");
return StatusCode(500, Messages.Error500Message);
}
我解决了从 asp.net 核心 6 中的数据库中获取最大数量的问题。将任何 DTO 字段从 NULL 替换为没有请求主体的控制器端的默认值
try
{
logger.LogInformation($"Patient Registred Successfully");
var maxNumber= await _context.Patient.MaxAsync(e => e.Uhid);
maxNumber+= 1;
var patient = mapper.Map<Patient>(patientCreateDTO);
if(maxNumber== null)
{
maxNumber= 1;
}
patient.Uhid = maxNumber;
await _context.Patient.AddAsync(patient);
await _context.SaveChangesAsync();
return CreatedAtAction("GetPatient", new { id = patient.Id }, patient);
}
catch (Exception e)
{
logger.LogError(e, $" Error Performing Post in {nameof(PostPatient)}");
return StatusCode(500, Messages.Error500Message);
}