Advanced Forum Search Results
-
It appears that to install .NET RIA Services, Visual Studio is required. For a build machine this is not ideal, it would be better to just install the Silverlight 3 SDK.
Is there any chance that RIA Services will be installable with just the SDK and MSBuild?
-
Installed on IIS6, everything seems fine.
On IIS7 I appear to need Integrated pipeline and not Classic.
-
Just as clarification, is there any way to run RIA on IIS6 or does it require IIS7?
It appears to use the integrated pipeline in IIS7?
-
Ah, yes. Okay, thanks a lot.
-
I added in some where clauses and it seems to compile. I thought that LINQ queries were valid without the where clause? (I say appears, because I'm now onto another raft of compile errors to do with the toolkit control changes...)
It means that I'll definitely refactor all my methods like GetCustomerById, but also probably means that ...
-
I'm upgrading to the July CTP and every one on my EntityQuery has a compile time error like the following:
Error 2 Could not find an implementation of the query pattern for source type 'System.Windows.Ria.Data.EntityQuery<CVG.ValuePlus.RIA.Web.Customer>'. 'Select' not found.
From code ...
-
Great, thanks.
-
Has anyone done the upgrade yet? Got any advice?
I assume you have to uninstall the SL3 Beta and the RIA May CTP first?
-
Ok, thanks. Looks like I'll have to show a message box to try and discourage the closing before saving.
-
I want to make an RIA call when the silverlight application is exiting. I'm handling the App.Current.Exit event and making the call. But because the call is async the application exits before the call completes.
Has anyone found a good way around this?
I've also tried registering a javascript method OnBeforeUnload, but get the same ...