这里有几个类型和特性具有相同识别特征的例子:
public Coordinates Coordinates { get; set; }
public Country Country { get; set; }
public Article Article { get; set; }
public Color Color { get; set; }
public Address Address { get; set; }
public Category Category { get; set; }
随着实体框架使用关系的财产名称,在使用实体框架的POCO时,这一问题更经常发生。
因此,需要做些什么? 使用非标准类别名称?
public ClsCoordinates Coordinates { get; set; }
public ClsCountry Country { get; set; }
public ClsArticle Article { get; set; }
public ClsColor Color { get; set; }
public ClsAddress Address { get; set; }
public ClsCategory Category { get; set; }
Yuk
或者使用更多的描述性财产名称?
public Coordinates GeographicCoordinates { get; set; }
public Country GeographicCountry { get; set; }
public Article WebArticle { get; set; }
public Color BackgroundColor { get; set; }
public Address HomeAddress { get; set; }
public Category ProductCategory { get; set; }
不理想,但可以与我共同生活。
或掌握信息技术?
你们的最佳做法是什么?