I want to convert it into entity framework Lambda Expression, but i\'m not getting proper syntax...
What will be the Entity Framework Lambda Expression of this SQL query
You could try this:
entities.table1.Where(x=>x.Date>(new DateTime(2014,1,4))).Max(x=>x.Number)