티스토리 뷰
먼저 Orderby( e=> e.Field<string>("A1")). ThenBy(e => e.Field("A2")) 또는 ThenByDescending(e => e.Field<string>("A2"))
DataTable query2 = new DataTable();
query2 =Result_DTL.AsEnumerable()
.GroupBy(row => new
{
TEC1 = row.Field<string>("a1"),
Grade1 = row.Field<string>("a2")
})
.Select(gcs =>
{
var row = Result_DTL.NewRow();
row["a1"] = gcs.Key.TEC1;
row["a2"] = gcs.Key.Grade1;
return row;
})
.OrderBy(e => e.Field<string>("a1")).ThenByDescending(e => e.Field<string>("a2"))
.CopyToDataTable();
'WPF' 카테고리의 다른 글
C# LINQ Left join of DataTables (249) | 2022.02.09 |
---|---|
RF Card Serial DataReceived Split Byte Process (0) | 2021.12.21 |
Mysql Aes_Encrypt 쿼리 == C# Encrypt String(HEX) (3) | 2021.06.14 |
Mysql Aes_Decrypt 쿼리 == C# Decrypt String(HEX) (0) | 2021.06.14 |
DataTable Select 구문 오류: 'B' 연산자 뒤에 피연산자가 없습니다. (0) | 2021.04.29 |
- Total
- Today
- Yesterday
- Xamarin.Forms
- c# Encrypt / Decrypt
- Microcharts
- Xamarin Firebase Phone Auth
- Windows IIS FTP 디렉토리 목록 오류
- FileStream Add Byte
- Xamarin reCAPTCHA
- ClickOnce 인증서 인증기간 변경
- 암호 마스터키
- Xamarin.Ios Firebase Phone SMS OTP Send
- GetCellContent CheckBox Value
- 서버 수준의 URN 필터
- WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
- Xamarin.Ios Firebase Phone Auth
- Entry '' has empty native path
- WPF Scrollviewer in ScrollViwer
- WPF Datagrid Cell Value Change
- WPF Textbox
- ssl_client_socket_impl.cc
- Xamarin Firebase Phone User Add
- Label Text LineBreak in Xaml
- 연산자 뒤에 피연산자가 없습니다.
- Embeded 한글Font적용
- C# LINQ Left join
- SkiaSharp
- Xamarin.Ios Firebase Phone User Add
- Xamarin SMS OTP Send
- Linux SSH Multi Computer Join
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |