RIA Services V1.0 SP1 Beta Released!!

Moments ago, we released RIA Services V1.0 SP1 Beta along with WCF RIA Services October toolkit. You can download it from https://silverlight.net/riaservices.

Installation instructions:-

  1. Uninstall WCF RIA Services Toolkit (if installed)
  2. Uninstall WCF RIA Services V1.0 for Visual Studio 2010
  3. Install WCF RIA Services V1.0 SP1 Beta
  4. Install WCF RIA Services Toolkit  October 2010

These set of bits are compatible with Silverlight 4 and Visual Studio 2010 and are now available for you to download.

About the download

This download is contains all the assemblies and is a standalone msi. You do not need to have V1.0 installed in your box and it is completely an in-place update. Just follow the steps above and you should be good to go. Also, this is a Go-Live releaseSmile.

What’s new in the WCF RIA Services V1.0 SP1 Beta release?

Shared Entities across multiple DomainServices

With the latest bits we have dropped the restriction that blocked multiple DomainServices from exposing the same Entity. 

Support for Complex Objects

WCF RIA now supports structural non-entity types.

Client code generation extensibility

WCF RIA Services now allows the client proxy generator to be replaced, either with a text template or with a plain CLR Type that implements IDomainServiceClientCodeGenerator like this:

    1: namespace MyCodeGenerator
    2: {
    3:     [DomainServiceClientCodeGenerator(typeof(MyCodeGenerator), "C#")]
    4:     public partial class MyT4CodeGenerator : IDomainServiceClientCodeGenerator
    5:     {
 
    7:         public string GenerateCode(ICodeGenerationHost host, 
    8:                                    IEnumerable<System.ServiceModel.DomainServices.Server.DomainServiceDescription> domainServiceDescriptions,
    9:                                     ClientCodeGenerationOptions options)
   10:         {
   11:             return “Here is generated code”;
   12:         }
   13:     }
   14: }
   15:  

A code generator is registered merely by adding to a server project a reference to its assembly, or by declaring the code generator class directly in the server project. MEF is used to recognize the [DomainServiceClientCodeGenerator] attribute among the server’s references. We have also released a TextTemplatingCodeGeneration in the Toolkit that can be used to customize the generated code. Note: the code generator is build on top of this extensibility. 

Better Binding support for EntitySet and EntityCollection

EntitySet and EntityCollection now implements ICollectionViewFactory and returns a view when bound to controls likes DataForm and DataGrid. Now you will be able to Add/Remove via a Dataform when it’s bound to a EntitySet and EntityCollection.

Improved Business Application Template

· The Login and Registration windows open with focus in the Name field

· Both windows also listen for the Enter and Escape keys, submitting or canceling accordingly

· The Windows authentication status control shows an ‘authenticating…’ message

· And more

Also check out Kyle’s blog for a customized look of the BAT. This theme is going to be made available only via the Visual Studio Gallery.

Localization

The product, assemblies and templates is now localized into 10 languages. These languages are :-

  • German
  • English
  • Spanish
  • French
  • Italian
  • Japanese
  • Korean
  • Russian
  • Chinese (Simplified)
  • Chinese (Traditional)

Faster Install

Hate the time-consuming installer, we heard you. Our installer is now less than a couple of minutes on most machines.

What’s new in the WCF RIA Services Toolkit October 2010 ?

With this release of the SP1 beta, we are also releasing a compatible version of the toolkit. The May2010 toolkit will still be available for you to use with V1.0 May release. Note, the October 2010 release will only work with the V1.0 SP1 Beta.

Here are the new additions:-

<Shamelessly taken from Tomek’s Blog">

  • Domain Service support for Windows Azure Table Storage. When hosting WCF RIA Services in Windows Azure, you can now easily leverage Windows Azure Table Storage as your data backend. Read more at Kyle McClellan’s blog.
  • T4 template based client code generation. The feature leverages the code generation extensibility point added to the product and provides a well factored and granular mechanism to customize client code generation logic using T4 templates.

</Shamelessly taken from Tomek’s Blog">

 

We would love to hear your feedback so be sure to get back to us via forums, twitter etc.

Cheers

Comments

  • Anonymous
    October 28, 2010
    Great job guys! Can't wait for the release!

  • Anonymous
    October 28, 2010
    @Wayne - it is now live on the web.

  • Anonymous
    November 03, 2010
    Hi, I've just installed the WCF RIA Services Beta SP1 for Silverlight 4 and VS2010 along with the October 2010 Toolkit. Now the WCF RIA Business Application templates are no longer available in VS2010. Thoughts? Glyn

  • Anonymous
    November 03, 2010
    Hi, I've just installed the WCF RIA Services Beta SP1 for Silverlight 4 and VS2010 along with the October 2010 Toolkit. Now the WCF RIA Business Application templates are no longer available in VS2010. Thoughts? Glyn

  • Anonymous
    November 09, 2010
    What happened to the application which are using the older one?

  • Anonymous
    December 02, 2010
    The comment has been removed

  • Anonymous
    December 15, 2010
    Hi Deepesh, Could you please let me know this version supports following scenario, public IQeuryable<SomePOCOEntity> GetSomePocoByCriteria(CriteriaPOCO criteria) Here in old version we cannot use CriteriaPOCO as a parameter it should be simple types, in this version is it possible to pass complex type so that we could do whatever the logic inside it, as most real world scenarios are not just returning single entity type (which then Where clause can be written in client side) but it will be a DTO object after manipulating Entities at the server side. Thank You