LINQ to SQL Timeout issue

Discussion of open issues, suggestions and bugs regarding LinqConnect – Devart's LINQ to SQL compatible ORM
Post Reply
joet919
Posts: 5
Joined: Mon 10 Sep 2007 18:17

LINQ to SQL Timeout issue

Post by joet919 » 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?

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Post by Shalex » Thu 05 Nov 2009 10:44

1. What version of dotConnect for Oracle are you using?
2. Please post here your call stack in runtime. If a function never returns control to program, press Pause when running your program in the Debug mode.
3. Send us (http://www.devart.com/company/contact.html) your DataContext with attributes.

Post Reply