我正在开发 MVC 应用程序,我正在尝试创建由 MVC 应用程序生成的类的部分类,比如说 Location 类。
现在我想在新的类文件中创建 Location 类的部分类。
以下类代码由位置代码的 MVC 自动生成。
namespace CRM
{
public partial class Location
{
public int Id { get; set; }
public string Name { get; set; }
public string Remark { get; set; }
}
}
我添加了新的类文件,其中包含上述文件的部分类
namespace CRMEntities.Partial_Class
{
public interface ILocation
{
[StringLength(50, ErrorMessage = "Region can accept maximum 50 characters.")]
string Region { get; set; }
[Key]
int Id { get; set; }
[Required]
string Name { get; set; }
string Remark { get; set; }
}
public partial class Location : ILocation
{
}
}
它给出了以下错误...
CRMEntities.Partial_Class.Location' does not implement interface member 'CRMEntities.Partial_Class.ILocation.Name