static void Main(string[] args) { string s; var q = from e in db.Employees select e.FirstName; s = db.GetQueryText(q); Console.WriteLine(s); Console.ReadLine(); }
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.