Overview : AsEnumerable에 대한 정의
1 2 3 4 5 6 |
심각도 코드 설명 프로젝트 파일 줄 비표시 오류(Suppression) 상태 오류 CS1061 ‘DataTable’에 ‘AsEnumerable’에 대한 정의가 포함되어 있지 않고, ‘DataTable’ 형식의 첫 번째 인수를 허용하는 액세스 가능 확장 메서드 ‘AsEnumerable’이(가) 없습니다. using 지시문 또는 어셈블리 참조가 있는지 확인하세요. |
1 2 3 4 5 6 7 |
IEnumerable<DataRow> result = (from Account in ds.Tables["Account"].AsEnumerable() join Transaction in ds.Tables["Transaction"].AsEnumerable() on new { Account_ID = Account["Account_ID"] } equals new { Account_ID = Transaction["Account_ID"] } where Account.Field<int>("Account_ID") == 1 select Account); |