Questions tagged [wcf-ria-services]

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

RIA Services provides a pattern to write application logic that runs on the mid-tier and controls access to data for queries, changes and custom operations. It also provides end-to-end support for common tasks such as data validation, authentication and roles by integrating with Silverlight components on the client and ASP.NET on the mid-tier.

Get Started with WCF RIA Services

1547 questions
0
votes
2 answers

Using Silverlight 4 with ODBC

I'm completely new to Silverlight and I want to connect to a Netezza database with an ODBC connection and pull records to display nicely in Silverlight. What's the easiest way to do this? From some research, it seems creating a WCF RIA service is…
user1384831
  • 219
  • 1
  • 5
  • 14
0
votes
2 answers

Include Total Count don't work in RIA

I try to get DomainCollectionView, but Total Count doesn't include in query: public DomainCollectionView collView { get { return (DomainCollectionView)this.GetValue(collViewProperty); } set { …
0
votes
1 answer

DataAnnotations.EnumDataTypeAttribute doesn't work from Silverlight

In SL5 I have a DataForm that shows data from a DomainService.metadata generated from an Entity Model. I'm using DataAnnotation.ValidationAttribues such as Required, StringLength, etc, to adorn the data properties in the…
0
votes
1 answer

Read Uncommitted For Ria Service

Is it possible to have a read uncommitted in ria service load operation? Or should I convert my load operation to invoke instead? Thanks
arcbound08
  • 107
  • 8
0
votes
1 answer

How can I have a generic repository to load the data asynchronously with EF?

I'm using Entity Framework in my Silverlight 5.0 application with RIA Services. I realized that to get the data from the client side, you have to get that data from an event when the async process is completed. I was thinking if it's possible to…
Darf Zon
  • 6,268
  • 20
  • 90
  • 149
0
votes
1 answer

Silverlight WCF RIA Services Dynamically Change Connection String

We have a Silverlight application which uses WCF RIA Services and Entity Framework 4.1 to connect to a database. At the moment, the connection string is supplied, as standard within the web.config and this all works successfully. However, I now want…
0
votes
1 answer

Does it works Calling Multiple asynchronous function of RIA Service parallelly

I'm Using SIlverlight 4.0 application with MVVM Architecture using RIA Service I'm Calling Multiple Asynchronous Function of RIA Service which provides me the list of different Entities in the same View Model initially it was not giving any…
Smith.Patel
  • 183
  • 10
0
votes
1 answer

How to work with associations in RIA Services proxy client outside Silverlight

I am trying to work with a RIA Domain Service as if it's a WCF service (which technically it is) There seems to be key elements "missing" from the generated proxy client. For example associated object properties. For simplicity here's an example of…
Ralph Shillington
  • 20,718
  • 23
  • 91
  • 154
0
votes
1 answer

Access query parameters service side in RIA Services

If I have a service which directly extends DomainService is it possible to utilise the Take and Skip parameters in my service side query. For example, here's my simple service... [EnableClientAccess()] public class StaffService : DomainService { …
BenCr
  • 5,991
  • 5
  • 44
  • 68
0
votes
1 answer

Silverlight RIA Services Data

I've been trying to figure out how to access data from my Silverlight application for a few days, now. I want to use a data class and a business class already written. Based on some advice from another post I created a Silverlight Business…
Bob Avallone
  • 379
  • 1
  • 10
  • 29
0
votes
1 answer

Error after adding JSON Endpoint to WCF Silverlight RIA Service

I am attempting to add a json endpoint to an existing WCF RIA Silverlight servive using the info found…
Robert Kaucher
  • 1,841
  • 3
  • 22
  • 44
0
votes
1 answer

RIA Services code generation files annoyance in VS2010

This is a simple usability question regarding VS2010 in combination with using RIA Services. Every once in a while I have one of those pesky generated files open an VS keeps asking me whether to reload it. Is there way to get rid of this nuisance?…
John
  • 6,693
  • 3
  • 51
  • 90
0
votes
1 answer

Best practice to store extra data for users in a SL business application + ASP.NET authentication scenario?

I'm about to write a Silverlight business application and I'm planning to use the ASP.NET built in authentication service (from what I read it's safe enough). My problem is I already have a database with a Users table which has many more columns…
Rodolphe
  • 1,689
  • 1
  • 15
  • 32
0
votes
0 answers

How to get the Ids of all items in a paged datasource?

In a Silverlight application I have a datasource, that is displayed in a grid with a pager. There are a couple of controls that change parameters of the query and/or filtering. The pager is used (obviously) because the number of returned items can…
H. de Jonge
  • 878
  • 7
  • 25
0
votes
1 answer

SL: Why my DomainService returns my result queries as null?

I'm working right now with Silverlight and RIA Services. In my project I have a DomainService and a AuthenticationService. When I authenticate, I realized that if I debug my ObjectContext I can see all the records from my database. But when I use my…
Darf Zon
  • 6,268
  • 20
  • 90
  • 149
1 2 3
99
100