示例#1
0
 public static TableDescriptionBuilder <T> Add <T>(this TableDescriptionBuilder <T> @this, Expression <Func <T, object> > columnSelector)
     where T : class
 {
     @this.AddColumn(columnSelector);
     return(@this);
 }
示例#2
0
 public static TableDescriptionBuilder <T> Add <T>(this TableDescriptionBuilder <T> @this, string columnName, Type columnType)
     where T : class
 {
     @this.AddColumn(columnName, columnType);
     return(@this);
 }