为了更清楚,我举一个例子
我有一个负责 sql 查询的类。当然,我有更多的域/字段和更多的查询。
我想按字段将它们分开,以便其他程序员轻松使用。
所以上课
public static class QueryClass
{
public static class Field1
{
public static string AQuery { get { return "a"; } }
public static string BQuery { get { return "b"; } }
}
public static class Field2
{
public static string AQuery { get { return "a1"; } }
public static string BQuery { get{ return "b1"; } }
}
}
示例,如何使用:
string aSimpleQueryField1 = QueryClass.Field1.AQuery;
string aSimpleQueryField2 = QueryClass.Field2.AQuery;
使用嵌套类是个好主意吗?还是另一种最好的方法?