6

entityframework5 codefirst の方法でエンティティを使用して DbContext を作成しようとしています。ブランド、カテゴリー、製品があります。

しかし、それを取得しようとするProductBrandCategoryフィールドがnullになります。Categoryオプションですが、Brandそうではありません。したがって、少なくとも Brand フィールドを設定する必要があります。以下のコードを試しました。私が見逃しているものはありますか?

    public DbSet<Brand> Brands { get; set; }
    public DbSet<Product> Products { get; set; }
    public DbSet<Category> Categories { get; set; }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Entity<Brand>()
            .HasMany(b => b.Products)
            .WithRequired(p => p.Brand)
            .HasForeignKey(p => p.BrandId);

        modelBuilder.Entity<Category>()
            .HasMany(c => c.Products)
            .WithOptional(p => p.Category)
            .HasForeignKey(p => p.CategoryId);
    }

そしてMVCコントローラ側では:

    using (var db = new InonovaContext())
    {
        var product = db.Products.Single(p => p.Id == id);
        model.Description = product.Description;
        model.ImageUrl = product.ImageUrl;
        model.Name = product.Name;
        model.BreadCrumb = product.Brand.Name + " / " + product.Category == null ? "" : (product.Category.Name + " / ") + product.Name; // Here Brand and Category are null
    }

製品クラスは以下のようなものです

public class Product
{
    public int Id { get; set; }
    public int BrandId { get; set; }
    public virtual Brand Brand { get; set; }
    public string Name { get; set; }
    public int? CategoryId { get; set; }
    public virtual Category Category { get; set; }
    public string ImageUrl { get; set; }
    public string Description { get; set; }
}

ブランドクラスは以下のようなものです:

public class Brand
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string ThumbLogoImageUrl { get; set; }
    public string Description { get; set; }
    public ICollection<Product> Products { get; set; }
}

ありがとう。

4

1 に答える 1

6

ブランドとカテゴリを仮想として宣言していない場合、ブランドとカテゴリのプロパティの遅延読み込みは機能しません。

public class Product
{
    public int Id { get; set; }
    public string Name { get; set; }

    public virtual Brand Brand { get; set; }
    public int BrandId { get; set; }

    public virtual Category Category { get; set; }
    public int? CategoryId { get; set; }
}

遅延読み込みと熱心な読み込みの詳細については、こちらを参照してください。

于 2013-09-22T15:23:07.487 に答える