The Linq I have below is note complete but you get the idea:
I need to check that TruckNbr does not end in “100” or “1000”.
How do I do this in the query below
var truck = (from tr in DataContext.Trucks
where tr.TruckNbr != ...
select tr).ToList()
Assuming TruckNbr is a string.