mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Synchronization code
This commit is contained in:
@@ -13,10 +13,10 @@ namespace SqlSugar
|
||||
internal static class DataTableExtensions
|
||||
{
|
||||
public static DataTable ToPivotTable<T, TColumn, TRow, TData>(
|
||||
this IEnumerable<T> source,
|
||||
Func<T, TColumn> columnSelector,
|
||||
Expression<Func<T, TRow>> rowSelector,
|
||||
Func<IEnumerable<T>, TData> dataSelector)
|
||||
this IEnumerable<T> source,
|
||||
Func<T, TColumn> columnSelector,
|
||||
Expression<Func<T, TRow>> rowSelector,
|
||||
Func<IEnumerable<T>, TData> dataSelector)
|
||||
{
|
||||
DataTable table = new DataTable();
|
||||
|
||||
|
Reference in New Issue
Block a user