假设我有这个课程:
public class MyClass
{
public string PropertyOne;
{
get;set;
}
public MyClass Country;
{
get;set;
}
}
我需要忽略具有其自身类类型的属性。 在我的代码段中,应该为我的数据模型省略Country属性。我该怎么办?
答案 0 :(得分:0)
您可以使用数据注释从模型中排除属性。
using System.ComponentModel.DataAnnotations.Schema;
public class MyClass
{
public string PropertyOne { get; set; }
[NotMapped]
public MyClass Country { get; set; }
}