일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- attr()
- 윈폼
- javascript
- IIS
- 리포팅서비스
- 비주얼스튜디오
- 엑셀
- MSSQL
- CONVERT()
- 프로시저
- 윈도우
- 오라클
- Excel
- 자바스크립트
- 태그를 입력해 주세요.
- SSRS
- c#
- 이클립스
- windows
- ASP
- MS
- aspnet
- 단축키
- oracle
- Winform
- DataGrid
- 마이크로소프트
- jQuery
- microsoft
- replace()
- Today
- Total
목록XML파싱 (3)
DJ메탈짱™의 Free Style
아래 예제는 Element 기준으로 , Element 값을 반환하는 방법인데… ElementAt(1) 메소드를 통해 연속적으로 동일하게 있는 Element가 하나면 index 예외오류가 발생함. 그럴 때 사용하는 메소드는 ElementAt à ElementAtOrDefault() 을 사용하면 해결됨. 정보 1 2 정보 3 var xmlRlt = (from xml in xmlDoc.Descendants("body") select new { columnCharacteristic1= (string)xml.Element("aaa").Value, //만약 ElemenetAt(1)이 없다면 공백 반환. columnCharacteristic2= (string)xml.Elements("bbb").Elemen..
동일한 Depth의 Element의 값들을 반환하는 경우 아래 (예제2) 코드 참고. (예제1)처럼 Descendants을 통해서 반복문의 경우에는 동일한 Element의 값을 반환하지는 않는다. A W A B A C A D W A (예제1) StringBuilder sb = new StringBuilder(); var rltLinq = from config1 in xmlDoc.Descendants("cabinColumnDetails") select new { cabinColumnDetails = (string)config1.Element("columnCharacteristic").Value }; foreach (var rlt in rltLinq) { sb.AppendLine("cabinColumnDet..
xml파싱하여 XML Document로 설정하는 (방법1) - \bin\Debug\ 에 xml파일을 copy하여 설정하는 방법. XDocument xmlDoc = XDocument.Load(@"samplexml.xml"); (방법2) – Resource에 xml파일을 추가한 방법. XDocument xmlDoc = XDocument.Parse(Properties.Resources.samplexml); var source = from aa in xmlDoc.Descendants("root")// element의 기준점 select new { cabinClass = aa.Descendants("aaa").ElementAt(0).Value,// root하위에 aaa element의 value cabinCapa..