A
Ant
Hi,
How can I use a date string to test a date in a LINQ query.
Below is a query in Northwind
Many thanks for any help
Ant
NorthwindDataContext db = new NorthwindDataContext();
var resultSet = from o in db.Orders
where o.OrderDate >= Convert.ToDateTime("20080601")
select o;
How can I use a date string to test a date in a LINQ query.
Below is a query in Northwind
Many thanks for any help
Ant
NorthwindDataContext db = new NorthwindDataContext();
var resultSet = from o in db.Orders
where o.OrderDate >= Convert.ToDateTime("20080601")
select o;