Advanced Forum Search Results
-
My guess is you created this project pre-RTW when the <asp:Silverlight control existed. What I have found is the easiest fix for that is to just re-create the test pages by deleting the old test pages, removing the link to the Siverlight application via the ASP.NET project properties, then re adding the link which by default will create ...
-
Check your maxRequestLength in web.config - I think that is what we had to raise to get it working
<httpRuntime maxRequestLength="nnnnnn" />
-
One thing to keep in mind that if a Load is already in progress you will get an exception - you can avoid that by checking IsBusy first
-
@colin is correct that occurs on the server due to the IQueryable - the "Where" will cause that to be added on to what is passed to the server - if you looked at Fiddler it would look something like the following where you would see the PropertySubcategoryID being passed in the ...
-
Its been a while since I resolved that in one of our models but I believe I just didn't generate the Customer (from your example) level methods and only worked with the leaf inherited objects - I believe I also had ot hand code the methods because it had to deal with the different sytax of inherited objects
-
@ColinBlair - we've been trying out a few ideas that use MVVM where it makes sense but still are able to leverage DDS where it has strengths. I'm not convinced there's not some level of co-existance possible and that using MVVM means never use a DDS
-
I ran into this same thing and with Jeff's help got things rolling earlier today. I just blogged about it here http://blog.davidyack.com/journal/2009/7/21/ria-services-domaindatasourcedata-not-updating.html and I also included a few helper methods I created to avoid all the casting. I also combined the CommitNew / ...
-
That is correct, you can't have both out of the browser and library caching enabled at the same time
-
Austin - can you elaborate on how the commands were hooked up that would cause this scenario vs how you are recommending? That would probably help others as well...
-
The July CTP was released on the 9th - see details on this post http://silverlight.net/forums/p/108916/246562.aspx#246562