[Linq] QueryOperator - Select / SelectMany //Select : 전체 컬렉션값 조회string[] arr = { "abc", "def", "ghi", "jkl" }; var s1 = arr.Select(a => a); foreach (var item in s1) { Response.Write(item + " "); } //SelectMany : 하위 집합 조회 -> char형으로 분리 var s2 = arr.SelectMany(a => a); foreach (var item in s2) { Response.Write(item + " "); } 더보기 [Linq] xml - Load ==== Books.xml ==== 01 LINQ따라하기 IT 02 MVC게시판 IT 03 jQuery게시판 IT // XElement.Parse("..."); XElement countries = XElement.Load(Server.MapPath("Books.xml")); // 방법1 var countriesWithPhNoFormat = from c in countries.Elements() where c.Element("Name") != null && (string)c.Element("Name").Value != "" select c; // 방법2 var countriesWithPhNoFormat2 = from c in countries.Elements() where c.Descendants("Na.. 더보기 [평온함·행복] 온유 봄에 사랑스런 핑크 컬러 #f4eff1 #f5d4d2 #f3aabc #f6dee6 #e1808e 푹신푹신하고 따뜻한 컬러 #f5f3db #e8a728 #a46814 #9e370f 따뜻하게 몸을 감싸는 양털 모포 컬러 #f1d5ae #e7c579 #f48459 #e3a5a5 #fff2d3 촉촉하고 부드러운 소프트 컬러 #e6f0d0 #f5d9e2 #fffac7 #fffff2 손뜨개 니트의 따뜻한 컬러 #faf3ca #f6a69b #fc7941 #feb854 #8cbad9 목가적이고 부드러운 컬러 #f9ebae #f5d9bd #fdcdb3 #bad789 촉촉하고 탄력있는 스폰지 바탕 컬러 #f6ca7e #ef9463 #dca57b #f4a57e #f89d4f 스위트 콘, 따뜻하고 걸쭉한 수프의 컬러 #f9c.. 더보기 이전 1 ··· 3 4 5 6 7 다음 목록 더보기