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;


댓글 없음:

댓글 쓰기