레이블이 translate query인 게시물을 표시합니다. 모든 게시물 표시
레이블이 translate query인 게시물을 표시합니다. 모든 게시물 표시

2015년 5월 26일 화요일

translated query for LINQ to SQL

visual studio 에서 LINQ to SQL 질의문의 어떻게 변환되는지 보고 싶을 때
GetCommand().CommandText 를 사용하면 된다.

eg.

SampleDataContext dbContext = new SampleContext();
var query = from employee in dbContext.Employee
                where employee.Gender == "Male"
                Select employee;
String command = dbContext.GetCommand(query).CommandText;