linq question
Posted: 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
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