我需要检查属性类型是否是它自己的类

时间:2019-03-08 09:56:14

标签: c# xamarin

假设我有这个课程:

public class MyClass
{
    public string PropertyOne;
    {
      get;set;
    }
    public MyClass Country;
    {
      get;set;
    }
}

我需要忽略具有其自身类类型的属性。 在我的代码段中,应该为我的数据模型省略Country属性。我该怎么办?

1 个答案:

答案 0 :(得分:0)

您可以使用数据注释从模型中排除属性。

using System.ComponentModel.DataAnnotations.Schema;

public class MyClass
{
 public string PropertyOne { get; set; }
 [NotMapped]
 public MyClass Country { get; set; }
}