Page 1 of 1

linq question

Posted: Wed 23 Jun 2010 20:31
by bucsicsm
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

Posted: Thu 24 Jun 2010 16:45
by StanislavK
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.