Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- C# 컬럼비교
- 델파이
- Delphi
- Row Indicator
- C# WndProc
- C# Devexpress CheckListBoxControl word wrap
- drawgrid
- C# 매크로
- RichEditControl
- 밀고
- 해운대밀면
- CustomDrawColumnHeader
- C# column
- C# SendMessage
- C# 빌드이벤트
- C#
- C# build
- ColumnHead MultiLine
- DataTable ReadOnly
- C# Devexpress
- C# 0x8001010d
- visualstudio 관리자권한
- 밀면
- C# DataTable linq
- RichEditControl Bold
- devexpress grid
- C# Devexpress CheckListBoxControl 줄 바꿈
- mssql 문자열 합치기
- C# linq pivot
- delphi JSON
Archives
- Today
- Total
목록C# DataTable linq (1)
개발자의 사투
C# DataTatable pivot Linq
DataTable Pivot(DataTable dt, DataColumn pivotColumn, DataColumn pivotValue) { if (dt.isNullOrEmpty() || dt.Rows.Count == 0) return null; // find primary key columns //(i.e. everything but pivot column and pivot value) DataTable temp = dt.Copy(); temp.Columns.Remove(pivotColumn.ColumnName); temp.Columns.Remove(pivotValue.ColumnName); string[] pkColumnNames = temp.Columns.Cast() .Select(c => c.Co..
컴방/C#
2021. 9. 24. 08:26