我想将LINQ表达式树翻译成sql语句,我不想为此编写自己的代码.
例:
var query = from c in Customers where c.Country == "UK" && c.City == "London" select c);
至
SELECT ... FROM Customers AS c WHERE c.Country = "UK" AND c.City = "London"
我知道DataContext.Log,但我想使用:
query.TosqlStatementString()
解决方法
CustomDataContext dc = new CustomDataContext(); IQueryable<Customer> query = from c in dc.Customer where c.Country == "UK" select c; // string command = dc.GetCommand(query).CommandText;