I use EF + domain service in SL app. In EF, entity update mapped to SP. After entity data is saved to DB, I want entity is refreshed, so that those changes by SP can be brought back to entity in SL ap
Using RIA Domain services with entity framework 4, I am having trouble to get the entity with filtered related items.
I\'ve got a database structure similar to this: Items ID Name ParentItemFK (tasks & notes can have any item as a parent; categories can only have other categories as a parent)
I have a simple Silverlight project that is just getting a set of entities (EF 4) on an IIS 7.5 system. Here is my web config:
Is it possible to add a event to the domain service class? I have a method which has to check about 1000 records in the database for something and I wish to do this in the domain开发者_StackOverflow中
In silverlight 4开发者_JAVA技巧.0 From the Domain Service is there any way to get the current URL?Does HttpContext.Current.Request.Url work for you? There\'s other interesting stuff in the Request obj
I have a simple DomainService: [EnableClientAccess] public class DomainService1 : IDomainService1 { [Query(IsComposable = true)]
I am trying to learn and implement TDD specifically using Moq and I have come up against a design that I can\'t figure out how to mock:
I have created a class that inherits for DomainService and have a Silverlight app that uses System.ServiceModel.DomainServices.Client to get a DomainContext. I have also created POCO DataContracts tha
is there any possibility to include sub entities in my query on the client? I\'m working on a Silverlight application using RIA Services, a DomainService and EntityFramework behind it for my database