linq question

Discussion of open issues, suggestions and bugs regarding LinqConnect – Devart's LINQ to SQL compatible ORM
Post Reply
bucsicsm
Posts: 1
Joined: Wed 23 Jun 2010 20:25

linq question

Post by bucsicsm » Wed 23 Jun 2010 20:31

Hello!

First I have to say that I am very new to c# and silverlight but during the evalutation of the product I came accross and issue with linq to an oracle database.

If I use a table with a few rows (10-20), create a datamodel, add a dataservice and run the query:

domainsrv mydom = new domainsrv()
mydom.Load(mydom.getQuery...().completed...

run the linq query like this:

var q = from x in mydom.XXXXX
select x;

and loop through the results, everything works fine. But if the table has thousands of rows I do not get any results (rowcount eq 0)

Any ideas on that?

Thanks in advance
mario

StanislavK
Devart Team
Posts: 1710
Joined: Thu 03 Dec 2009 10:48

Post by StanislavK » Thu 24 Jun 2010 16:45

Could you please describe the scenario you are trying to implement in more details? In particular, what is the data model you've created, what data service are you using (e.g., WCF or RIA services)?

If possible, please send us a test project so that we are able to investigate the issue in details. Please inlude scripts needed to create and populate database objects.

Post Reply