WCF RIA Services

There are 7 entries for the tag WCF RIA Services
WCF RIA Services and TotalEntitiesCount=-1

If you do serious WCF RIA Services development you’ll probably end up with something like this: using System.Linq;using System.ServiceModel.DomainServices.Hosting;using System.ServiceModel.DomainServices.Server;[EnableClientAccess()]public class NorthwindService : DomainService{ private readonly NorthwindEntities datacontext = new NorthwindEntities(); [Query] public IQueryable<Customers> GetCustomers() { return this.datacontext.Customers; }} where code that interacts with data store is separated in a separate NortwindEntities class (maybe just because we use NHybernate as favorite ORM…). Everything works as expected...

posted @ lunedì 31 gennaio 2011 08:47 | Feedback (0)

Understanding LoadBehavior in WCF RIA Services

I’m working on an Silverlight 4.0 application that spans several technologies and this time I’m in charge of the “server side”, in specific I’m developing the WCF RIA Service that will be consumed by the main application and in these weeks I have to admit that, while RIA Services are a real boost in productivity and allows you to forget all low level WCF stuff, you can sometime waste a lot of time figuring why basic things don’t work as expected, so the truth is: If you need to develop a production application you’d better understand how things work under...

posted @ venerdì 31 dicembre 2010 16:51 | Feedback (3)

RIA Services vNext Feedback

Così com’è successo per Silverlight e WPF il team dei WCF RIA Services sta raccogliendo feedback per capire quali sono le le features da implementare nella prossima versione. Volete dire la vostra? allora partecipate a questa survey: http://dotnet.uservoice.com/forums/57026-wcf-ria-services   Technorati Tags: WCF RIA Services

posted @ sabato 15 maggio 2010 08:23 | Feedback (0)

WCF RIA Services=RAD 4 RIA

Ho appena terminato slides e demo per il “Community Tour” di martedì prossimo, l’argomento è tra i miei preferiti: WCF RIA Services non solo perchè li uso quotidianamente ma perchè è ormai una tecnologia della quale non riuscirei più a farne a meno sviluppando in Silverlight. Se sviluppate applicazioni Silverlight (o pensate di iniziare a svilupparle) e ancora non li state usando, venite alla sessione, vi renderete subito conto di quello che vi state perdendo… CU There! Technorati Tags: WCF RIA Services,Community Tour,Workshop

posted @ mercoledì 27 gennaio 2010 23:44 | Feedback (0)

EntitiesInError in WCF RIA Services

Gestire situazioni in cui si hanno problemi di concorrenza tra utenti con i WCF RIA Services è veramente molto semplice, supponiamo di voler sapere se durante un operazione di update qualcuno ha modificato prima di noi gli stessi records. Il codice da scrivere è il seguente: private void OnUpdate(object sender, RoutedEventArgs e) { this.customersContext.SubmitChanges(lop => { if(lop.HasError) ...

posted @ sabato 9 gennaio 2010 17:25 | Feedback (3)

Using DTO’s with WCF RIA Services

Sviluppate applicazioni Silverlight e non usate i WCF RIA Services? beh, non sapete cosa vi state perdendo… Sebbene la stragrande maggioranza delle demo facciano direttamente uso delle entità generate dall’ORM di turno (Entity Framework/LinqToSql per la maggior parte dei casi) non è assolutamente detto che: Usare i WCF RIA Services significhi necessariamente usare Entity Framework o Linq To SQL (anche se questo indubbiamente aiuta) Usare i WCF RIA Services richieda la proiezione lato client delle entità generate dall’ORM per lo storage. Se, giustamente, vogliamo separare il dominio...

posted @ giovedì 26 novembre 2009 19:43 | Feedback (3)

WCF RIA Services for Visual Studio 2008 SP1

Sono stati rilasciati i WCF RIA Services compatibili con Visual Studio 2008 SP1: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=76bb3a07-3846-4564-b0c3-27972bcaabce Technorati Tags: WCF RIA Services

posted @ venerdì 20 novembre 2009 18:20 | Feedback (0)