Не могу настроить отношение многие ко многим EF Core - PullRequest
0 голосов
/ 13 июня 2019

Я не могу настроить отношение многие ко многим в EF Core и обратиться к вам за помощью. Это не дубликат, потому что я не спрашиваю, как настроить это в целом, но прошу помощи в моем конкретном случае. Вот мои модели:

public class CompanyDto
{
    public int Id { get; set; }
    public string Name { get; set; }
}
public class CompanyCategoryDto
{
    public int CompanyId { get; set; }
    public int CategoryId { get; set; }
    public CompanyDto Company { get; set; }
    public CategoryDto Category { get; set; }
}
public class CategoryDto
{
    private ICollection<int> _parentIds;
    public int Id { get; set; }
    public string Name { get; set; }
    public int? ParentId { get; set; }
    public CategoryDto Parent { get; set; }
    public ICollection<CategoryDto> Children { get; set; }
}

А вот моя конфигурация построения модели контекста:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.Entity<CompanyDto>().ToTable("companies");
    modelBuilder.Entity<CompanyCategoryDto>().ToTable("companies_categories")
        .HasOne<CompanyDto>();
    modelBuilder.Entity<CompanyCategoryDto>().HasOne<CategoryDto>();
    modelBuilder.Entity<CompanyCategoryDto>().HasKey(cc => new {cc.CompanyId, cc.CategoryId});
    modelBuilder.Entity<CompanyCategoryDto>().Property(cc => cc.CategoryId).HasColumnName("categoryId");
    modelBuilder.Entity<CompanyCategoryDto>().Property(cc => cc.CompanyId).HasColumnName("companyId");
    modelBuilder.Entity<CategoryDto>().ToTable("categories")
            .HasMany(c => c.Children).WithOne(c => c.Parent).HasForeignKey(c => c.ParentId);
    base.OnModelCreating(modelBuilder);
}
public virtual DbSet<CompanyDto> Companies { get; set; }
public virtual DbSet<CategoryDto> Categories { get; set; }
public virtual DbSet<CompanyCategoryDto> CompaniesCategories { get; set; }

Есть три таблицы:

companies_dcategories:
companyId  int not null,
categoryId int not null,
primary key (companyId, categoryId),
constraint companies_categories_categories_id_fk
    foreign key (categoryId) references categories (id),
constraint companies_categories_company_id_fk
    foreign key (companyId) references companies (id)
companies:
id  int not null,
primary key id
categories:
id  int not null,
parentId int not null,
primary key id,
constraint categories_categories_id_fk
    foreign key (parentId) references categories (id),

Выполнение этого запроса:

return await _context.Set<CompanyDto>().Include(c => c.Categories).ToListAsync();

Я получаю следующую ошибку:

An unhandled exception occurred while processing the request.

MySqlException: Unknown column 'c.Categories.CompanyDtoId' in 'field list'
MySqlConnector.Core.ServerSession.TryAsyncContinuation(Task<ArraySegment<byte>> task) in 
C:\projects\mysqlconnector\src\MySqlConnector\Core\ServerSession.cs, line 1252

MySqlException: Unknown column 'c.Categories.CompanyDtoId' in 'field list'
MySql.Data.MySqlClient.MySqlDataReader.ActivateResultSet(ResultSet resultSet) in 
C:\projects\mysqlconnector\src\MySqlConnector\MySql.Data.MySqlClient\MySqlDataReader.cs, line 81

А есть запись в журнале:

fail: Microsoft.EntityFrameworkCore.Database.Command[20102]
      Failed executing DbCommand (12ms) [Parameters=[], CommandType='Text', CommandTimeout='30']
      SELECT `c.Categories`.`Id`, `c.Categories`.`CompanyDtoId`, `c.Categories`.`ParentId`
      FROM `categories` AS `c.Categories`
      INNER JOIN (
          SELECT `c0`.`Id`
          FROM `companies` AS `c0`
      ) AS `t` ON `c.Categories`.`CompanyDtoId` = `t`.`Id`
      ORDER BY `t`.`Id`
MySql.Data.MySqlClient.MySqlException (0x80004005): Unknown column 'c.Categories.CompanyDtoId' in 'field list'

Было бы здорово, если бы вы могли мне помочь!

...