文件命名约定

时间:2010-08-30 05:59:48

标签: c# .net naming-conventions entity

请帮助我命名定义每个值(Entity类)属性的类文件。示例:对于数据集文件,我们将使用如下名称:dsxxx。但我不知道实体课的意义请帮助我。提前谢谢。

1 个答案:

答案 0 :(得分:3)

实体类没有命名约定。 Normaly你会称之为它是什么。

e.g Company.cs - >公司的实体类

但是你可以区分它,因为其他“类似实体”的类具有命名约定。

e.g。

CompanyViewModel.cs -> View Model for the entity class
ICompany.cs -> Interface for the Company Entity
CompanyDto -> Data Transfer Object