I'm fairly new to using Linq in C# and I just want to know how a normal SQL statement will look like when compared to a Linq query?
I have this statement:
var query =
from b in db.Employee.Include(o => o.Position)
where b.Position.Position_Desc == "Junior" && b.Employee_ID == 5
select b;
So my actual question is how will this statement look if I were to write it in SQL?
