I am trying to convert one application to EntityFrameWork codefirst. My present code is
string sFrom =\"26/12/2013\"; select * FROM Trans where CONVERT(d
Take the convert part out of linq statement and keep it in a variable, like this:
var xyz = Convert.ToDateTime("12/31/2018");
and use this variable in the linq statement.