티스토리 뷰
Except 메서드를 사용하여 첫 번째 테이블에만 있고 두 번째 테이블에는 없는 연락처를 반환합니다.
// Fill the DataSet. DataSet ds = new DataSet();
ds.Locale = CultureInfo.InvariantCulture;
FillDataSet(ds); DataTable contactTable = ds.Tables["Contact"];
// Create two tables.
IEnumerable<DataRow> query1 = from contact in contactTable.AsEnumerable() where contact.Field<string>("Title") == "Ms." select contact;
IEnumerable<DataRow> query2 = from contact in contactTable.AsEnumerable() where contact.Field<string>("FirstName") == "Sandra" select contact; DataTable contacts1 = query1.CopyToDataTable();
DataTable contacts2 = query2.CopyToDataTable();
// Find the contacts that are in the first
// table but not the second.
var contacts = contacts1.AsEnumerable().Except(contacts2.AsEnumerable(), DataRowComparer.Default); Console.WriteLine("Except of employees tables");
foreach (DataRow row in contacts)
{ Console.WriteLine("Id: {0} {1} {2} {3}", row["ContactID"], row["Title"], row["FirstName"], row["LastName"]); }
'ETC' 카테고리의 다른 글
.NET Core 웹 응용 프로그램 오류 - HTTP Error 500.35 (0) | 2020.12.28 |
---|---|
Float flo = Integer/Integer ; flo = 0이다. (0) | 2020.12.10 |
[MSSQL] 서버 수준의 URN 필터가 잘못되었습니다. (0) | 2020.01.22 |
ClickOnce 인증서 인증기간 변경 (0) | 2020.01.08 |
DB백업 복원 (0) | 2019.04.16 |
- Total
- Today
- Yesterday
- Embeded 한글Font적용
- Xamarin.Forms
- c# Encrypt / Decrypt
- WPF Scrollviewer in ScrollViwer
- Label Text LineBreak in Xaml
- WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
- 서버 수준의 URN 필터
- Linux SSH Multi Computer Join
- ssl_client_socket_impl.cc
- Windows IIS FTP 디렉토리 목록 오류
- Xamarin SMS OTP Send
- SkiaSharp
- FileStream Add Byte
- 연산자 뒤에 피연산자가 없습니다.
- ClickOnce 인증서 인증기간 변경
- Xamarin.Ios Firebase Phone Auth
- C# LINQ Left join
- Entry '' has empty native path
- WPF Textbox
- GetCellContent CheckBox Value
- 암호 마스터키
- Xamarin.Ios Firebase Phone User Add
- Microcharts
- Xamarin Firebase Phone User Add
- WPF Datagrid Cell Value Change
- Xamarin Firebase Phone Auth
- Xamarin.Ios Firebase Phone SMS OTP Send
- Xamarin reCAPTCHA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |