Tagged Questions

Microsoft WCF RIA services simplifies the traditional n-tier application pattern providing support for validation, authentication and custom application logic.

learn more… | top users | synonyms

15
votes
1answer
3k views

MVVM-light + RIA Services best practices

I would like to start a collection of MVVM-light (w/ RIA Services) Best Practices. There are a number of items I have found to be helpful best practices or best approaches, but would like to hear ...
14
votes
2answers
14k views

RIA Services: How can I create custom authentication?

I am working with the Silverlight RIA Services and I want to create custom authentication. This appears to be the only thing that has virtually no documentation (I've read through the entire ...
10
votes
5answers
4k views

The “CreateRiaClientFilesTask” task failed unexpectedly

I've VS 2010 and recently installed WCF RIA Services V1.0. For testing I have created a new Silverligh Business project but now every now and then when I rebuild the solution I receive the following ...
10
votes
1answer
8k views

RIA Services EntitySet does not support 'Edit' operation

Making my first steps in RIA Services (VS2010Beta2) and i encountered this problem: created an EF Model (no POCOs), generic repository on top of it and a RIA Service(hosted in an ASP.NET MVC ...
10
votes
3answers
6k views

Silverlight, DataPager, RIA Services, and smart paging

I'm still trying to get my feet on the ground with Silverlight and RIA Services, and of course starting with some of the more "fun" stuff like grids and intelligent paging. I can connect to RIA ...
8
votes
2answers
490 views

How much business logic belongs in RIA services layer?

I have been experimenting recently with Silverlight, RIA Services, and Entity Framework using .NET 4.0. I'm trying to figure out if that stack makes sense for use in any of my upcoming projects. It ...
8
votes
4answers
2k views

How do I choose between WCF, REST, POX and RIA services for a new Silverlight application

There a lot of different ways a Silverlight application can connect back to it’ server. Including WCF - Windows Communication Foundation REST (see also) ADO.NET Data Services (or is this just ...
8
votes
3answers
3k views

RIA Services vs ADO.NET Data Services

I'm currently in the process of creating a Silverlight 3 data driven application. To access the database, 2 common approaches are used: RIA Services and ADO.NET Data Services. Does anyone have any ...
8
votes
8answers
1k views

What is .NET RIA Services?

Can someone explain it succinctly? Can it be used with non-Silverlight clients?
8
votes
2answers
5k views

Combining .NET RIA Services and MVVM in Silverlight 3.0

When using .NET RIA Services and MVVM in Silverlight 3.0 is there a difference between the Metadata type from RIA Services and the ViewModel from the MVVM pattern? Are these the same thing or should ...
7
votes
1answer
2k views

How do I use DomainContext.Load to populate properties of my ViewModel?

I have a Silverlight page that gets its data from a view model class which aggregates some data from various (RIA services) domain services. Ideally I'd like the page to be able to data bind its ...
7
votes
2answers
2k views

Can WCF Data Services or RIA Services be implemented with NHibernate?

From what I read on the internets, WCF Data Services seem to be bound to data access via Entity Framework on the server. Is there a way to have NHibernate access mapped in the same way?
6
votes
2answers
398 views

RIA Services OData “Query options are not allowed.”

I have a OData endpoint which was created automatically by RIA which seems to work with simple 'get' queries. E.g. http://xxx/Service/BusinessApplication1-Web-DomainService1.svc/odata/ProductSet ...
6
votes
2answers
853 views

How many entities should RIA domain service include?

I was wondering about how to exactly implement domain service in RIA. Is it common to include all entities in the entire domain model in a single domain service, thus making the service responsible ...
6
votes
2answers
7k views

RIA Services versus WCF services: what is a difference

There are a lot of information how to build Silverlight application using .NET RIA services, but it isn't clear what is unique thing in RIA that is absent in WCF? Here are few topics that are talking ...
5
votes
2answers
255 views

How to force RIA Services to include a sub-entity in one Query method but not another

Here's the scenario: I've got an association between "Groups" and "Users, represented by a "UserGroupAssignment" object. public class UserGroupAssignment { [Key] public virtual long Id { get; ...
5
votes
3answers
862 views

Best resources to learn WCF RIA Services

The question title says it all, really. What books, videos, articles are you looking at to learn how to use the newly released [WCF RIA Services][1] for Silverlight? Thanks!
5
votes
1answer
1k views

What are the key features/benefits of RIA Services?

I am currently researching .NET RIA Services however I am having trouble finding a definitive list of the benefits of RIA services compared to plain WCF to Silverlight, or event a list of the key ...
5
votes
3answers
8k views

Silverlight RIA Services - how to do Windows Authentication?

I am building my first Silverlight 3 + RI Services application and need some help. It will be deployed in an controlled corporate intranet, 100% windows clients. I have started from the Silverlight ...
5
votes
2answers
2k views

.Net RIA Services: DomainService Needs a Parameterless Constructor?

I'm using the July CTP of .Net RIA Services in an ASP.Net application with some Silverlight components. I'm calling the RIA Services from Silverlight. My problem arose when I tried to use Unity and ...
4
votes
1answer
65 views

Which thread is the callback executing on when performing an asynchronous RIA Services call?

I'm using a RIA Services DomainContext in a Silverlight 4 app to load data. If I'm using the context from the UI thread, is the callback always going to be on the UI thread? Or put another way, is ...
4
votes
1answer
740 views

How can I get details about a Silverlight code generation exception?

I'm getting the following error now when I build my Silverlight Business Application: The code generator 'Microsoft.ServiceModel.DomainServices.Tools.CSharpCodeDomClientCodeGenerator' ...
4
votes
1answer
1k views

Include() in EF4 using RIA Services Domain Service not loading!

I am having trouble returning multiple entities (eager loading) using the Include() method. I am trying to load the entites in a silverlight application using RIA services. The Data Model consists ...
4
votes
1answer
432 views

Silverlight + RIA Entity Domain Service best practice: How many entities per domain?

I have a database with a gazillion entities, I watched Tim Heuer's video about Silverlight & RIA Services, and he explained how to generate a DomainService. My question is, should I use many ...
4
votes
2answers
299 views

Deployment of Silverlight RIA Services Application

Testing on local Web Development Server and running the application in shared hosting environment differs a lot. What are the best steps to deploy a Silverlight RIA Services Application on a shared ...
4
votes
2answers
1k views

Why use a “RIA Services Link” instead of just an OData endpoint?

Before reading, please know I've read all the other posts about the differences between vanilla WCF, WCF Data Services and RIA Services. My question is specifically about why RIA Services is being ...
4
votes
3answers
384 views

Are there scenarios where the usage of WCF RIA Serivces isn't a good choice?

Since Silverlight 4 Microsoft recommends the usage WCF RIA services for business applications. Are there Silverlight scenarios, where the WCF RIA serives should no be used and plain WCF services or ...
4
votes
1answer
1k views

DomainContext sometimes still HasChanges after SubmitChanges completes

I have a very simple server model that includes a parent entity with a [Composition] list of child entities. In my client, I have 2 functions. One function removes all the child entities from the ...
4
votes
2answers
339 views

Is Silverlight RIA worth learning or should I stick to normal Silverlight?

Is Silverlight RIA worth learning or should I stick to normal Silverlight? Background: I have done a couple small applications in WPF I have 12 years expereince with business apps in the ...
4
votes
4answers
2k views

Entity Framework ObjectContext in windows/WPF/Silverlight application

We are writing a WPF application using Entity framework (Silverlight with RIA services to be precise). We're using a shared ObjectContext through the application so that we can benefit from sharing ...
3
votes
1answer
218 views

RIA Services Vs. WCF and Shared Code

We're starting to develop a new Silverlight LOB application where the DataAccess will not be based on EF, rather our own DAL code (for legacy and other not related reasons). We are currently debating ...
3
votes
3answers
797 views

Why is it so hard to share resource files (resx) with my Silverlight client?

I'm trying to share a resource file (.resx file) from my web (RIA Service?Silverlight Host) to client (Silverlight) by linking the resource file into my client. When I try to access resources using ...
3
votes
2answers
328 views

Lifetime of a Silverlight RIA Services DomainContext

For the entity framework context, the best practice is to only have your context hanging around for as long as you need it. Does the same thing hold true for a Silverlight Domain Context or is it ...
3
votes
3answers
834 views

LightSwitch vs WCF RIA

I've just found out about Visual Studio LightSwitch, Microsoft's new Silverlight-centric RAD tool. Does this occupy the same space as WCF RIA Services? Is WCF RIA effectively dead?
3
votes
4answers
597 views

How to prevent Silverlight RIA Entity getting attached to datacontext before i'm ready

I have a Silverlight 4 application for a simple 'TODO' list. The problem I'm having is that databinding is hooking up relationships on my TODO object, which causes the RIA data context to add it to ...
3
votes
2answers
217 views

Usage of WCF RIA Services, where the datasource isn't a classical (relational) database

I want (have) to write a Silverlight and (or) ASP.NET based webapplication with SAP in the backend (in other words, the datasource is no classical database) . The usage of Silverlight and ASP.NET is a ...
3
votes
2answers
805 views

Problem during RIA authentication

I've built an authentication service in RIA that inherits from DomainService and IAuthenticate. The problem is following: When LoginOperation fails (loginOperation.LoginSuccess is false) due to ...
3
votes
3answers
841 views

NHibernate.Linq, WCF RIA Services, weird error

I have a Silverlight Business Application project set up, with these codes. I have this domain class: public class BaseDomain { public virtual Guid Id { get; set; } public virtual DateTime ...
3
votes
0answers
175 views

.Net RIA Services and SubSonic3 usage examples

I am looking for any examples which ideally cover several possible combinations ( SimpleRepository, ActiveRecord , POCO ) - something similar to Brad Abrams ...
3
votes
2answers
214 views

How do I Unit Test a function that inserts a record into a RIA Services DB?

This is a sample function that works with an entity, saves it to a db and then causes problems because we can't write a Unit Test for it. Check it out: // this class exists in a Silverlight Class ...
3
votes
3answers
471 views

Sending contained object over RIA Services

I have class like this: public class object { [Key] int number; String mystring; OtherObject anotherobject; } WHen i sent this over RIA my silverlight application can see ...
3
votes
1answer
588 views

How to consume legacy business logic from a silverlight application?

I have an XBap system designed as a 3-layer application. The XBap client consumes the logic through a WCF Service using netTcpBinding. For easy of databinding and to be able to re use data validation ...
3
votes
3answers
3k views

Creating a WPF front end for a Silverlight 3.0 application

I'm considering creating a WPF front end for a Silverlight application. Since Silverlight generally has the smaller subset of functionality this should be possible, but I'm not sure the best way to ...
3
votes
2answers
479 views

Where is the best place to put Business Rules in a Silverlight MVVM RIA Services application?

Where is the best place to put business rules in an RIA Silverlight application? I thought the Domain Service would be a good spot except it seems to only share Data to the client tier. I don't think ...
2
votes
2answers
53 views

Linq Query of active child entities

I didn't know what to write in the title of the question. Here's my sample. I have a Foo class which has a collection of Bars as follows: public class Foo { public bool Active {get; set;} ...
2
votes
1answer
32 views

Is it possible to get associated like 0..1 data by RIA Services?

I can get 1..0 data by RIA Services fine. var sFiltered = this.ObjectContext.Sequences.Include("Schedules").Include("Events") .Include("Events.EventFrames") ...
2
votes
2answers
275 views

Changing Default “input is not in a correct format” Validation Error in RIA Services

I'm trying to change the default error message in a Silverlight DataGrid when the input is in an incorrect format. For example, you type letters into a numerical field. As you tab away, it says "input ...
2
votes
1answer
635 views

Select ListBox item only on Click or Enter key in Silverlight

When I populate a ListBox with RIA Services, an item is automatically selected. This triggers the SelectionChanged event. If I move the selection up or down with the arrow keys, the event also gets ...
2
votes
2answers
621 views

Exposing Associated Entities In Ria Services SP1 and EF 4.1 POCO

We recently upgraded a Silverlight 4 app that was using RIA Services and EF 4.0 with EDMXs to RIA Services SP1 and EF 4.1 using POCOs. The upgrade was well worth while, but it appears that RIA is now ...
2
votes
4answers
279 views

Why is the Entity Framework inserting when it should update?

I use the following RIA Services call to register and return a Project entity. // On Server; inside RIA Domain Service [Invoke] public Project CreateNewProject(String a_strKioskNumber) { Decimal ...

1 2 3 4 5 10