Tagged Questions

Microsoft WCF RIA Services simplifies the traditional n-tier application pattern by bringing together the ASP.NET and Silverlight platforms.

learn more… | top users | synonyms (4)

16
votes
6answers
2k views

How to Improve WCF Data Services Performance

I'm new to WCF Data Services so I've been playing. After some initial tests I am disappointed by the performance of my test data service. I realize that because a WCF DS is HTTP-based there is ...
15
votes
4answers
8k views

How to use WCF RIA SERVICES with WPF application?

I want to use WCF RIA SERVICES in my WPF application. but WCF RIA SERVICES client only surport silverlight and ASP.NET now, how can I use it in WPF application?
11
votes
7answers
6k views

RIA Services versus WCF Services

I'm rewriting an LOB application whose architecture is like this: Silverlight && Windows Mobile -> WCF -> Entity Framework -> Database. The mobile app was supposed to be able to do ...
10
votes
2answers
3k views

Ria Services Passing Complex Object as parameter to a query domain service method

I'm experiencing some difficulties with a WCF RIA Services similar to the problem specified in this thread. The domainservice method I'm creating (a Query method) should take a complex object ...
9
votes
1answer
723 views

weird error with RIA Services “code generator encoutered a fatal exception”

This is the second time that I have this really weird problem with WCF RIA Services! the sad thing is that I had to solve the problem twice, going through the different hoops again :(, even though ...
8
votes
1answer
320 views

Windows Workflow, WCF Ria services & Silverlight Example

I'm looking for an example of using Windows Workflow as a server-side 'business logic' layer, with WCF RIA services handling the communication to and from a Silverlight UI. Been googling for ...
8
votes
4answers
6k views

Silverlight 4 WCF RIA Services and MVVM is not as simple

[Disclaimer: I'm ASP.NET MVC Developer] Hi, I'm looking for some best practices with implementing MVVM pattern with WCF RIA in Silverlight 4. I'm not looking to use MEF of IoC for locating my ...
7
votes
1answer
314 views

Custom implementation of a DomainService using Linq to SQL

Can anyone point me to an example of or briefly describe how one would go about creating a custom implementation of a WCF RIA Services DomainService using Linq to SQL as the data access layer but ...
7
votes
2answers
853 views

Exception handling in RIA Service

As you know, it's recomended handle exceptions using FaultException with standard WCF service to hide exception details. That's fine but i'm having problem with WCF Ria service. I want to throw an ...
6
votes
2answers
875 views

How to implement a lazy loaded Silverlight data grid without using paging

Using the Business Application template from the brand new released RIA Services, you can see lots of examples using the data grid on top of a DomainDataSource in combination with a DataPager. The ...
6
votes
3answers
3k views

How to access WCF RIA service from Windows Service?

I have a functioning Silverlight 4 application (VS2010, SL4, WCF RIA, hosted on my dev box using Cassini, 64-bit Windows 7). Inside the ClientBin directory I have an .svc file that describes my ...
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 ...
5
votes
1answer
86 views

WCF RIA - Query operator 'Count' is not supported

I'm trying the following code.. LoadOperation<Tasks> PhasesLP = context. Load(context.GetTasksQuery(). Where(o=> ProjectList.Where(p=> p.ProjectID == o.ProjectID).Count() == 1) ...
5
votes
1answer
249 views

WCF-RIA Services Client OutputCache - how to force a refresh of the cache

As mentioned in another question we are using WCF-RIA Services in our project in combination with the silverlight navigation framework. On part is a search function. A search button will navigate to a ...
5
votes
3answers
257 views

How Can I Extend A Entity When Using RIA Services With Silverlight?

On the server side of my Silverlight solution, I have 2 projects. Website that serves up the Silverlight page. A Entity Framework data access layer. I have a entity with FirstName and LastName ...
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
247 views

Does WCF RIA enforce bad design?

I have been dabbling in WCF RIA with Silverlight for the past few weeks and I am finding it very difficult to generate well-designed software using it. My impression is that it's a tool that's best ...
5
votes
2answers
2k views

Alternative to Using an Entity as a Parameter to an Invoke Method in WCF RIA Services

Howdy, ya'll! First question on StackOverflow! :-) So here's the scenario: We're working on a web app with Silverlight 4 and using WCF RIA Services 1.0 SP1 Beta for the web service. I have my ...
5
votes
1answer
1k views

WCF Ria Services ChangeSet.GetOriginal(): How does it work?

I have a fairly simple question to which I cannot seem to find the answer for. I have a silverlight app with Ria Services. In the DomainService class I have an update method like below: public void ...
5
votes
1answer
409 views

WCF / WCF Data Services / WCF RIA Services

Not to add another SO post regarding the different WCF stacks, but I want to make sure I'm heading in the right direction before I waste more development time... My scenario - Our company has a ...
5
votes
2answers
862 views

Where does the navigation logic belong, View, ViewModel, or elsewhere?

I a button in a view, bound to an ICommand property of the ViewModel (actually it's RelayCommand from mvvv-light) If the user clicks on the button I want to navigate to a new view. Of course the ...
5
votes
1answer
1k views

Ria Services vs WCF Dataservices

My Team are evaluation to a bigger Business portal. (Invoicing, Bookkeeping, Salaries.....) We are all used to work with DDD, O/R mappers with NHibernate as our first choice. We have chosen to work ...
5
votes
5answers
1k views

What is the equivalent of LINQ-to-SQL for Silverlight?

I have a WPF application that uses LINQ-to-SQL on a local .MDF file. This solution is simple, easy, and effective, i.e. I set up my model once, then read/write data anywhere via LINQ: using ...
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
84 views

Disabled lazy-loading and eager-loading entity references not working as expected

I've been working with WCF RIA Services and Silverlight and have had some success in exposing a service that serves data taken from an ADO.NET Entity Data Model modeled from an existing SQL Server ...
4
votes
1answer
188 views

WCF-RIA Services Client OutputCache - not working in IE with localhost

We are using the WCF-RIA Services in our project. On part is a search which will trigger a RIA request on the server. For this request we have enabled the Client output cache using this attribute: ...
4
votes
1answer
297 views

WCF RIAServices Querys that throw exceptions have caching problems

We have a problem with HTTP Response caching when using WCF RIA Services with Silverlight. Server side, we have a simple DomainService GET method with no caching specified, like this: ...
4
votes
5answers
208 views

RIA Services exposing nested objects

I am having an issue exposing my nested object VIA WCF RIA Service. Example of business objects (not tied to DB) public class User { public string Name { get; set; } public Product Product { ...
4
votes
1answer
684 views

Using WCF RIA Services SP1 how do I consume a stored procedure via an entity framework complex type?

I'm struggling with stored procedure use in SP1 of WCF RIA Services via Entity Framework 4 Complex Types. I found only a couple of helpful links here and here. Prior to SP1 I had to return a ...
4
votes
1answer
375 views

Are WCF Data Services dead for Silverlight?

WCF RIA Services just got updated few days ago. WCF RIA services got complex objects, TT templating, etc. WCF RIA Services have (by default) fast and compact binary transport. WCF Data Services have ...
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
3answers
385 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
3answers
612 views

Customize a WCF RIA Services Endpoint

Is it possible to customize the parameters of a WCF RIA Services endpoint? Specifically, I would like to create a custom binding for the endpoint and increase the maxReceivedMessageSize to allow ...
3
votes
1answer
41 views

How to use WCF RIA Services in PRISM 4?

I am developing Silverlight application with Prism 4 and WCF RIA service. I had searched on google to get sample explaining this, but failed to get any successful output. I am confuse about how to ...
3
votes
2answers
36 views

Why can't I project a `TimeSpan` across RIA using `TimeSpan.FromMinutes`?

I have combined RIA Services with Entity Framework using POCO's. It's all worked wonderfully (way better than LINQ to SQL). The problem that I have is with the following segment of code: [Query] ...
3
votes
2answers
78 views

partial method OnCreated not called when expected

I've extended my domain class on the silverlight client side in a partial class. Specifically, I've added a RelayCommand property that I will be binding a button to. The RelayCommand property needs ...
3
votes
1answer
56 views

RIA Services DomainService query with EF Projection that calls method and still allows composable paging/sorting

Here's an interesting problem that I hope someone can lend a hand with. I have a DomainService class with the following query: [Query] public IEnumerable<BatchResult> ...
3
votes
3answers
82 views

WCF RIA fails until “Clean Solution”, then it works

Strange problem that just starting to happen on a SL/WCF RIA Services project that I have been working on for the past year. Recently I have been getting this message everytime I fix a bug and re-run ...
3
votes
1answer
96 views

RIA does not generate all proxy entities

Framework: Silverlight 4 + Entity Framework 4 (SL business application: SL project and .WEB project in a solution) I have two classes in my Data Layer (not mapped to DB, created manually - I need ...
3
votes
2answers
500 views

Entity Framework Code First DbContext Checks the ConnectionString During Compile?

It seems that the Code First DbContext really uses the given ConnectionString during compile? I don't even know how that is possible but to me it seems to be so. If I turn OFF my local SQL Server, I ...
3
votes
2answers
137 views

WCF RIA Services & Windows Azure => Entity has no key defined

Background Info Developing with Windows Azure and WCF RIA Services, I have seen a lot of random errors and overall frustrating situations, but this one is really the pinnacle. I have an application ...
3
votes
2answers
102 views

Paged DomainDataSource will all entities?

Is it possible to have a DomainDataSource - which is being paged by a DataPager that is associated - have all entities instead of just those that belong to the current page? How? The paging is being ...
3
votes
2answers
433 views

WCF RIA Services for POCO as a query parameter

I define a method below in a DomainService class but get a compiler error: Parameter 'objectType' of domain operation entry 'GetPropertiesByGuiObject' must be one of the predefined serializable types. ...
3
votes
1answer
144 views

Enterprise design pattern online learning resource

There are numerous resources/tutorials/samples available for OO design patterns like GoF. Are there any similar resources/tutorials/samples available online for enterprise design patterns. I went ...
3
votes
2answers
382 views

Is CQRS compatible with Entity Framework Self Tracking Enities / WCF RIA Services?

CQRS makes alot of sense. However it seems mutually exclusive to the approach of using an ORM that provides change tracking. If I have one "channel" for queries to get my objects as RO, then theres ...
3
votes
1answer
645 views

Use EF4 DbContext with Domain Service

I built my data access layer with the new code first stuff from Entity Framework 4, with a class derived from DbContext and various DbSet members. Now I'm expanding to Silverlight and want to use WCF ...
3
votes
1answer
197 views

RIA Services and EF validation

I'm developing a Silverlight application with Entity Framework and RIA Services. When I create the RIA Service I have the option to generate a metadata class for basic validation. What is the ...
3
votes
3answers
792 views

Linq To Entities - how to filter on child entities

I have entities Group and User. the Group entity has Users property which is a list of Users. User has a property named IsEnabled. I want to write a linq query that returns a list of Groups, which ...
3
votes
3answers
327 views

WCF RIA Services — take action when all data is loaded

So, I am just getting started with .WCF RIA Services and Silverlight. Here's what I need to do: I need to make a couple of calls to my domain service to load data. So, I'm using the Load() method ...
3
votes
1answer
468 views

Anyone get Silverlight Ria Domain Service OutputCaching to work?

I am trying to use client side caching in silverlight by decorating a domain service in a RIA Service like so: [OutputCache(OutputCacheLocation.Client,3600,UseSlidingExpiration = true)] public ...

1 2 3 4 5 15