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 |
| 31 |
Tags
- C# 0x8001010d
- devexpress grid
- C# 빌드이벤트
- CustomDrawColumnHeader
- visualstudio 관리자권한
- C# 매크로
- 델파이
- C# WndProc
- C# DataTable linq
- C# 컬럼비교
- C# SendMessage
- mssql 문자열 합치기
- RichEditControl Bold
- C# build
- C#
- C# column
- C# Devexpress CheckListBoxControl word wrap
- C# Devexpress
- RichEditControl
- DataTable ReadOnly
- C# Devexpress CheckListBoxControl 줄 바꿈
- Delphi
- drawgrid
- ColumnHead MultiLine
- C# linq pivot
- 밀고
- 밀면
- delphi JSON
- 해운대밀면
- Row Indicator
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