コード例 #1
0
 public static IMappingExpression <TableRow, TDestination> ConvertFromTableRow <TDestination>(
     this IMappingExpression <TableRow, TDestination> exp,
     Func <TableRow, string, object> getter)
 {
     exp.ConvertFromTableRow(p => p, getter);
     return(exp);
 }
コード例 #2
0
 public static IMappingExpression <TableRow, TDestination> ConvertFromTableRow <TDestination>(
     this IMappingExpression <TableRow, TDestination> exp)
 {
     exp.ConvertFromTableRow(p => p, (r, p) => r[p]);
     return(exp);
 }