작업했던 기록을 하는 블로그입니다.기록을 하면서 약간의 오류가 있을 수 있습니다. 사용한 ASP.NET의 버전의 9.0이며EntityFrameworkcORE.MySql의 버전은 8.0.3입니다. 1. DBContext 설정에 PrimaryKey가 있을 때와 없을 때의 차이입니다.using Microsoft.EntityFrameworkCore;namespace MyProject;public class ServerDbContext : DbContext{ public ServerDbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) ..