配置实体框架表使用流畅的API内部类

时间:2018-04-17 12:19:36

标签: c# configuration fluent

我有一个类,我想使用这个类在数据库中生成一个表。 如果我使用单独的类来配置此表,当我想使用内部类将两列作为键配置此表时,它可以正常工作它有一个错误:

  

在模型生成期间检测到一个或多个验证错误。 StoreKabir.Models.Company :: entitytype' Company'没有定义键。定义了此EntityType的键

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace StoreKabir.Models
{
    class Company
    {
        internal class Configuration : System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<Company>
        {
            public Configuration()
            {
                #region TableCompanyConfiguration

                ToTable("Companies");
                HasKey(current => new
                {
                    current.CopmanyId,
                    current.CompanyName
                });

                Property(current => current.CopmanyId)
                    .HasColumnName("CopmanyId")
                    .HasColumnOrder(0)
                    .IsRequired()
                    .HasDatabaseGeneratedOption(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.None);

                Property(current => current.CompanyName)
                    .HasColumnName("CompanyName")
                    .HasColumnOrder(1)
                    .IsRequired()
                    .IsVariableLength()
                    .IsUnicode(true)
                    .HasMaxLength(40);

                #endregion TableCompanyConfiguration
            }
        }

        public Company()
        {

        }

        public Company(Int64 companyId, string companyName)
        {

            CopmanyId = companyId;

            CompanyName = companyName;
        }

        public Int64 CopmanyId { get; set; }

        public string CompanyName { get; set; }
    }
}

1 个答案:

答案 0 :(得分:0)

在我看来,您需要在第一个属性CompanyId上添加属性[Key]。

如果未命名为Id,则不确定EF是否可以从上下文获取它。