Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
344 views

Custom DataAnnotations with RIA Services

This is a word of warning more than a question, if you are using RIAServices with Custom ValidatorAttributes. Here is the Senario, I was creating a custom DataAnnotation that would validate a ...
4
votes
3answers
361 views

Is it possible to use Silverlight RiaServices without IIS?

I want to use silverlight as my windows service interface. For that, I'm using a custom web server to provide the xap file and it works fine. Now I want to use RiaServices, but of course I there is ...
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 ...
3
votes
3answers
824 views

Trouble deploying WCF Ria Services app to IIS6 - EndpointNotFoundException The service Web-AuthenticationService.svc does not exist

We are trying to deploy a Silverlight + WCF RIA Services application to an IIS 6 web server. When the silverlight application starts in the browser I get an error. Using Fiddler, I can see the real ...
2
votes
1answer
362 views

RIA Services, Forms Athentication and extra cookies

I have an Silverlight 4 RIA Services application with custom Forms Athentication. The custom authentication service works like a charm. The problems is I want to serialize the user object in a cookie ...
2
votes
1answer
368 views

Filtering entity set with lambda

So I have this on the server public IQueryable<Pos>GetPos(int programID) { var entitySet = _posRepository.All().Where(x => x.ProgramID == ...
2
votes
2answers
291 views

To many EntityCollections in Entity raise “implement IConvertible” exception in RIA Services

I have a Entity object create with the Entity Framework and used in Silverlight with the RIA Services framework. The Entity in question has two EntityCollections which are included in the IQueriable ...
2
votes
2answers
233 views

Mixing RIA services and standard WCF services

Is it possible to have a mix of RIA WCF services and custom WCF services hosted in the same project? At the moment I have a server project hosting 2 RIA service classes, both of which work fine, and ...
2
votes
0answers
102 views

Expression Blend displaying error when creating sample data from an existing class

When I try to create new sample data based on an existing type, I get the following error message: GetType cannot be called with null or empty typeName I tried restarting Expression Blend 4, but ...
2
votes
2answers
362 views

Where can we configure WCF parameters for WCF RIA services?

Wrt WCF RIA services. Where & How can we configure WCF parameters like message size, response timeout, transport protocol etc? I am trying to WCF RIA services(PDC09 build) with Silverlight 3.0. ...
2
votes
1answer
953 views

Silverlight 3 with WCF RIA services with VS2010 possible?

Got confused with microsoft website descriptions. or May be the google search results just confused me. My company wants to use silverlight for a line of business application but doesnt want to go ...
2
votes
4answers
3k views

WCF RIA Services - Passing a custom object to a query method as parameter

I want to pass a custom class as parameter to the query method which returns me a collection of entities. I need something like this [Query] public IEnumerable<MyEntity> Search(SearchParams ...
2
votes
2answers
925 views

Filling a ComboBox in the DataForm with a DomainDataSource

Here is my layout: <StackPanel> <!-- Defining my DDS here wont allow my ComboBox inside the DataTemplate bind to the loaded items --> <DomainDataSource x:Name="ddsValues" ...
1
vote
0answers
147 views

.Net RIA Services - Membership API - SQL Server?

I have an existing ASP.Net application using the Membership API. The Membership API is hosted in SQL Server (not SQL Express) and is in the same database as the application data. I want to port the ...
1
vote
2answers
280 views

How to divide an Entity with hundreds of fields?

I'd like suggestions for the design of a CRUD business app using Silverlight 4, the Business Application Template, WCF RIA Services and the Entity Framework 4. The app tracks lab test results ...
1
vote
1answer
589 views

EF4 Code Only + Ria Services

I thought I could use my DbContext with a DomainService just the same way I use it with any MVC app: public class DatabaseContext : DbContext { public DbSet<User> Users { get; set; } } ...
1
vote
1answer
407 views

Silverlight 4: Business Application Template

I am developing a Silverlight 4 application which is based upon Business Application Template. I am interested to ask user to login and display a login form as soon as user arrives to my site. I need ...
1
vote
1answer
65 views

RIA Service initialization problem

I have a problem with RIA services. Some times (not always) I get an InvalidOperationException with the message: "EntityTypes has already been initialized" The error comes from the generated file but ...
1
vote
2answers
256 views

Why should I use MVVM when it breaks built in riaservices functionality

I'm struggling to grasp why MVVM is really a good pattern to implement in riaserivces, To me there's nothing but trouble to it, it just add's another tier that I have to code. I Get that I could ...
1
vote
1answer
230 views

Collection is empty when it arrives on the client

One of my entities has an EntitySet<> property with [Composition], [Include] and [Association] attributes. I populate this collection in my domain service but when I check its contents when it is ...
1
vote
1answer
1k views

RIA Services query: Nested “from” and include children

I have the following schema. What I'd like to do is to retrieve all customers (and children properties) from a selected StaffAssignment by StaffId. So I've written the following query: from c in ...
1
vote
2answers
417 views

RIA Services and Relationships in Silverlight 3

I've finally managed to get a handle on loading information using Silverlight, ADO.NET Entities, and RIA Services, but I'm still having a problem with getting the information about the relationships. ...
1
vote
3answers
2k views

Using Reflection to Remove Entity from RIA Services EntityCollection?

To facilitate control reuse we created a solution with three separate projects: a control library, Silverlight client, and ASP.NET backend. The control library has no reference to the RIA ...
1
vote
1answer
2k views

WCF RIA Services Business Rule /Database Exception Handling

I am using WCF RIA Services VS2008/.NET 3.5 and trying to do exception handling. I have overridden OnError method of DomainService and doing my exception handling in that method. I am trying to throw ...
1
vote
4answers
2k views

Silverlight/xaml - displaying child data in a datagrid

I have two tables in a database and using entity framework and ria services to display data in a simple datagrid. Here is the database/EF structure Cars Make ----- ---- CarId MakeId Car ...
1
vote
0answers
826 views

Silverlight 4 beta + RIA Services - TargetInvocationException at first step

I've installed the Silverlight 4 beta toolkit and created a new silverlight business application. Without making anychanges at all, when I try to look at the Mainpage.xaml in designer view I get the ...
1
vote
1answer
1k views

Error in ServiceOperation attribute in .Net RIA Service

I am just trying to learn .Net RIA Service, so i am creating one hello world example. Now in domainserviceclass i am using code below: [ServiceOperation] public string SayHello() { return "Hello ...
1
vote
1answer
620 views

Managing silverlight RIA services context lifetime

I'm working on a line-of-business silverlight application and I need a piece of advice concerning managing RIA services context lifetime. Application - afer a few simplifications - is build of one ...
1
vote
1answer
1k views

Linq 2 SQL , insert Objects with associated child objects List into database , Silverlight RIA

I am doing small Silverlight app which will allow users to Create orders. I have created Linq 2 SQL dbml and dragged there my database tables, "Orders" and "OrderLines" , there is an association ...
1
vote
4answers
2k views

Silverlight/.Net RIA Services - Authorization Working Sample?

I have followed numerous tutorials and walkthroughs/blogs about the capabilities that Ria Services brings to the table when using Silverlight with ASP.Net. Essentially I am looking for a live working ...
0
votes
1answer
295 views

EF -> RIA Services -> Silverlight, Can I show validation error messages but still Save changes

I am using Entity Framework 4.0, RIA Services, and Silverlight 4.0. I need the user to be able to save any changes regardless if they are correct or incomplete. To do this I had to make a lot of ...
0
votes
1answer
176 views

Domain Service Method using Optional Parameters?

I want to be able to bind to this datasource without the view needing to know that there is an additional parameter (unless he cares). Is this possible to do? [Query] public ...
0
votes
1answer
114 views

RIA Services with Silverlight: Having more than 1 domain service?

I was wondering what the pros and cons of OR even if its possible to have more than 1 domain service in RIA Services? I could separate each domain service i.e. 1 for security, 1 for Products etc If ...
0
votes
1answer
109 views

Lambda expression with two navigation properties

I have a situation where I am calling an entity and putting in two includes in the ria services call. public IQueryable<Position> GetPositions(int programID) { return ...
0
votes
0answers
197 views

RIA services Query save self-referencing hierarchy

I'm trying to save object that references self-referencing hierarchy of another objects and get "entity has multiple parents" exception. Below are classes and results of investigation ...
0
votes
1answer
30 views

Does RIA Services support Entities that are Sub types?

Here's my entity framework model: Here's the domain service class dialog: I can't select the Debit or Credit entities in the domain service class dialog. Can I not use these entities in my ...
0
votes
1answer
100 views

Issue with DataContractSurrogate in the Debugger

Having big issues running my project locally. When I run it and get to this piece of code. _institutionRepository.All(); when i step over this with debugger I get this inside the ...
0
votes
0answers
90 views

MEF with DomainService

Does anyone know how to use MEF with Ria Services on the server? Actually what i'm trying to do is to make MEF exports available inside a DomainService: [EnableClientAccess] [RequiresAuthentication] ...
0
votes
0answers
24 views

Some entities are dropped in a call to a service

I'm facing the following problem. In a Silverlight 4 Business Application using RIA Services I have a service method, GetEmployeeHierarchy(), which returns an Employee with a collection of ...
0
votes
1answer
77 views

authorizationservice causing unittest fail

I'm currently learning how to unit test my methods in a silverlight RIA project. I have some methods that the user is authorized. I though I could solve this problem by creating a mock ...
0
votes
1answer
1k views

cannot add new item to PagedCollectionView in SL4 app with WCF RIA Services

I created a wcf ria service application (with Silverlight 4 and SQL Server 2008 Express). Within my domain model I have two tables projects and times which are linked by a foreign key. This works all ...
0
votes
1answer
461 views

Logging in silverlight 4

How can I log serverside domainservice ria errors in my domainservice in sl4? I tried looking at clog, but that's not compiled for SL4, only SL3 and below ty
0
votes
2answers
353 views

Making asynchronous calls in a RIA services method

I have a Silverlight 4 application using RIA services. One of the RIA service methods does something similar to the following: List<Foo> fooList = this.GetListOfFoo(); AnotherService aService ...
0
votes
2answers
76 views

Creating complex-featurerich yet comprehensive user-intuitive search forms with .net riaservices

I need to make some complex, feature rich search forms for my silverlight application, but I need to do it in a way that the user understands, so it's not only me as a developer who thinks that it's ...
0
votes
2answers
119 views

Get ErrorMessage from ResourceFile / RIA Services

My goal is simply to show a language-specific errormessage for a Required-Annotation: [Required(ErrorMessageResourceName = "LastNameRequired", ErrorMessageResourceType = typeof(ValidationMessage))] ...
0
votes
1answer
161 views

Invariant dates with WCF RIA Services

Is there any way to prevent Silverlight/RIA Services from converting a datetime object on the wire? Right now, I see datetimes set to 'Local' or 'Unspecified' being converted to the local time of the ...
0
votes
1answer
482 views

Silverlight 4 RIA Services - select first entity from EntitySet

I'm working with Silverlight 4 on getting a single entity from an Entity Set. Doesn't sound hard?! Well, I simply can't get it working: myDomainContext dc = new OrgUnitTestDomainContext(); OrgUnit ...
0
votes
1answer
31 views

OnSubmitted event

I have a silverlight 4 ria app, and I'd like to fire an event after entities have been submitted to the database. I thought that I could use the dataclassescontext methods like OnCreated() ...
0
votes
1answer
41 views

debugging loadwith has subnodes in domainservice, but not when called in viewmodel

I'm trying to use the .LoadWith method I have these lines of code in my domainservice: public IEnumerable<Subject> GetSubjectList(Guid userid) { DataLoadOptions loadopts = ...
0
votes
1answer
945 views

Silverlight dataGrid binding with ria Service doesn' work

i'm new to Silverlight and it's totally driving me crazy! i'm using SL4 and trying to bind datagrid with a Domain Service Query: what i did exactly is i generate an ado.net entity model from my ...

1 2