I have a LINQ2SQL statement where I am using two criteria:
var query1 = from r in dt.Test
where r.ID == 92
&& r.Status = '"I"
select r.ID && r.Status = "I"
But its giving me an err that AND (&&) operator cannot work with string and bool. Whats the turnaround for this?