Hi all,
I have a table was named "MYTABLE". That have two columns "FIRSTNAME" and "LASTNAME".
Two query below returned same result is IQueryable<MYTABLE>
dataContext.MYTABLEs.Where(f => f.FIRSTNAME == firstName && f.LASTNAME == lastName);
from t in dataContext.MYTABLEs
where t.FIRSTNAME == firstName && t.LASTNAME == lastName select t;
What is the difference? which one in the two query faster?