其他分享
首页 > 其他分享> > 扩展实体框架6类

扩展实体框架6类

作者:互联网

我有一个名为Person.cs的实体框架生成的类,该类位于名称空间Project.Model中.

然后,我在名为Extensions的项目中放置了一个新文件夹,在其中添加了Person.cs并将此文件的命名空间设置为Project.Model.

完成此操作后,出现错误:

Type ‘Project.Model.Person’ already defines a member called ‘Person’
with the same parameter types.

我究竟做错了什么?我需要扩展EF Person.cs以具有其他属性.

这是扩展的Person.cs的代码.

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

namespace Project.Model
{
    public partial class Person
    {
        public Person()
        {

        }
    }
}

解决方法:

您应该从Person类中删除默认构造函数:

public partial class Person
{
    // add properties here
}

您的局部类是同一类的一部分,因此与任何其他类定义一样-不能两次定义成员,包括构造函数.如果转到EF生成的Person类,您将看到它已经具有默认构造函数(EF将其用于导航属性初始化).

标签:partial-classes,entity-framework-6,c,entity-framework
来源: https://codeday.me/bug/20191029/1960949.html