LINQ to SQL Timeout issue
Posted: Wed 04 Nov 2009 16:58
I'm tryig to use LINQ to SQL in my app. I have the simple query below.
var q = from c in dslDataContext.TempDslPrequalDatas
where c.DataId == 1
select c;
after stepping though if you look at the results view for q I get the error message below.
Items = Function evaluation timed out.
Any suggestions?
var q = from c in dslDataContext.TempDslPrequalDatas
where c.DataId == 1
select c;
after stepping though if you look at the results view for q I get the error message below.
Items = Function evaluation timed out.
Any suggestions?