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;