Advanced Forum Search Results
-
How are you displaying your order details? If you want to delay-load the order details like you're doing, there's no way to get around delay before they show up. However, if you are showing other Order information, we should be able to set it up so that information shown immediately.
-
Yes. Vijay's response in the Eager Loading loading thread describes how to use the [Include] attribute and Linq-to-Sql's LoadWith(...) or Entity Framework's Include(...) to load all of the associated OrderItems when you load your Orders. The [Include] attribute is the glue that tells the RIA Services client that not only do ...
-
That is a great explanation of the current support, Colin. I want to add that the composition model tkd99 describes is one that we are aware of. However, there is no easy solution and we are working hard to see how much support for composition we can provide.
Thanks,
-
Hi Mike,
We don't currently have any samples of the scenario you're trying, but it certainly is a scenario we support. Let's try a couple of things to narrow down where the problem is.
1. Due to the event based async model that the RIA Services uses, all errors that occur during Load calls (and Submit calls) are exposed ...
-
Hi Lee,
Silverlight 3 uses exceptions to notify the controls when validation has failed and these appear as user-unhandled exceptions when debugging. The exception you are seeing is likely expected. If you continue past the exception(s) or run your application without debugging, you should see the validation visuals. If not, please reply ...