The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
32 views

Domain Services controlling the granularity

I thought domain services should only represent domain concepts, but it seems we should also use them to control the granularity of domain layer interfaces ( which also prevents domain knowledge ...
0
votes
0answers
27 views

DataGridTemplateColumn sort breaks when grid is hidden and displayed again

I have a data grid that lists documents. We use this grid in a tabbed application, where one tab is used to search for documents, and other tabs are used to add/edit/delete documents. The problem ...
1
vote
2answers
65 views

How do I handle persistence and unit of work in DDD using Entity Framework?

I'm a little overwhelmed with all of the information on DDD, unit of work, domain services, app services, etc. I'm trying to figure out how a persistence-ignorant domain model ultimately gets ...
0
votes
1answer
46 views

LightSwitch - bulk-loading all requests into one using a domain service

I need to group some data from a SQL Server database and since LightSwitch doesn't support that out-of-the-box I use a Domain Service according to Eric Erhardt's guide. However my table contains ...
1
vote
1answer
252 views

Lightswitch is slow, ADO.NET Entity Framework/Domain Service/WCF RIA Service

I'm developing an Lighswitch application in VS2012 with an external SQL Server 2008. I'm using a WCF RIA Service to fetch my data, using these techniques: ...
1
vote
1answer
106 views

Silverlight application denied access to domain service in Internet Explorer 10

I am seeing a strange problem where my Silverlight application is failing to load due to an "Load operation failed for query.." and the reason is "Denied Access at ...
0
votes
1answer
25 views

Is it OK to flush the EntityManager from within a domain Service?

I have a domain service called OrderService, with a saveOrder() method: class OrderService { // ... public function saveOrder(Order $order) { ...
0
votes
0answers
34 views

Domain Service Class Wizard Doesn't Find Entities

I'm building LighSwitch application. For bussines logic I have WCF RIA Service. I have database. In web part of service I've created ADO model for my database, but my domain service class wizard ...
-1
votes
1answer
77 views

Heroku Custom domains : Error NOT FREE? [closed]

I am on the Cedar stack and it seems that heroku domains:add myDomainName is not working : ! Dev apps cannot have custom domains. Upgrade to Basic or Production to continue. And the ...
1
vote
1answer
22 views

Database name and RIA Services

Is it possible to get the database name within a DomainService of the RIA Services? i.e. I have got public partial class MyAppDomainService : LinqToEntitiesDomainService<MyAppEntities> This ...
0
votes
0answers
6 views

Changing base domain

Let's say I have 2 domains: abc.com, registered with company A, and def.com, registered with company B. Both of them point to the same server, but abc.com is the base domain and def.com is an add-on ...
0
votes
0answers
27 views

Invoke string silverlight

I have a problem with invoking string, I am creating silverlight application: This is my DomainService: // TODO: Create methods containing your application logic. [EnableClientAccess()] public ...
1
vote
3answers
250 views

Find if users from one domain exist in another

I'm trying to learn some sys-admin type stuff on the side, and am very new at this. My question seems simple, but I can't seem to find a way to do this. Here's the scenario: I have setup 2 Windows ...
0
votes
1answer
137 views

DbGeography + entity framework 5 + Silverlight + DomainService

I have create Entity with DbGeography and add it to my Domainservice. But my SL app didn't see this filed. How can I use DbGeography in SL5 app?
0
votes
1answer
1k views

Point/Send domain name to website on Windows Server 2008 R2

Okay, can't seem to find a great article or info on this. My client purchased a domain for his company (domain.com) through Network Solutions. He has a local server running Windows 2008 R2 that he ...
0
votes
0answers
92 views

Cross-table validation in ASP .NET MVC

I'm peforming validation using DataAnnotations and Validation Attributes. I'm using ADO NET Entity Model, Domain Services, RIA Services, Silverlight and my projet has a server side that's in ASP .NET. ...
0
votes
0answers
214 views

Interactive logon vs standard user? [closed]

What's the difference between interactive logon, and standard users? The computers I have seen before use interactive logon, and I like the properties of it, although I only have a workgroup on my ...
0
votes
1answer
81 views

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 ...
0
votes
0answers
82 views

How can I expose my EF Code First based repositories as domain services for a Silverlight application?

I have an EF 4.3 Code First Entities project, which I share between three client projects. I need to add a fourth client, which must be a Silverlight 5 application. I quickly noticed that the examples ...
0
votes
1answer
249 views

How do I add a Domain Services class to a Silverlight app or RIA Services library?

I have tried several guides I find online, and nothing seems to work. I am trying to follow this guide, Setting up a new Silverlight 4 Project with WCF RIA Services, but when I try and add a Domain ...
0
votes
1answer
144 views

How to Load items in comobox inside a datagrid Silverlight?

App: Silvelight 4 Business app template + RIA services + C#. I combined the aspnet membership db into my database. I'm able to register user, login and logout. I need to be able to assign users roles ...
0
votes
1answer
132 views

How does domain objects and services interact in DDD?

'So it was in this context we created a Order.adjust() method that delegated the call to OrderAdjust Service. Having Order.adjust() has an advantage that it makes Order own the adjust operation.' How ...
2
votes
3answers
239 views

Unable to retrieve single entity

I'm trying to retrieve a single entity by its ID in the DomainService. However the type of that entity is not generated in the client. Here is my query: public Contact GetContact(int contactId) { ...
0
votes
2answers
410 views

Problems with IValueConverter and asynch DomainService Invoke in C#

In my searching the common solution to this problem is to add an event handler to handle once the invoke operation has completed. Unfortunately, my IValueConverter needs to return a value so having ...
0
votes
0answers
46 views

What is the difference between TValue and returnType in InvokeOperation<TValue>(…)?

The method name : http://msdn.microsoft.com/en-us/library/ff422446(v=vs.91).aspx public virtual InvokeOperation<TValue> InvokeOperation<TValue>( string operationName, Type ...
0
votes
0answers
202 views

Binding ComboBox to Secondary Object

My page's data context is set to an Instance of a Project class and all of the other fields in the page are working properly. Each project has another class associated with it as a property. This ...
0
votes
3answers
341 views

LinqToEntities code for Query needing one entity returned foreach root node?

I think I have got myself into a muddle with this one. My database looks like: Locations [root] Inspections [level1] InspectionItems [level2] InspectionReadings [level3] ...
2
votes
0answers
168 views

RIA MVVM Guidance PLEASE

I've been trying to implement MVVM, and for the most part I really like it. I've been able to find answers to most of my questions, but there is one thing that either I am totally missing, or really ...
0
votes
1answer
127 views

Domain Service error when called from silverlight

I am hosting a silverlight app in an existing mvc view. I am getting the infamous "remote server returned an error-> notfound" when I try to access a domain service defined in the mvc ...
0
votes
1answer
105 views

How to set guage value for component art control

I have a Guage control in MainPage.xaml which needs three value (value, minimum and maximum). I have written the logic to get these three values from database in a stored procedure. Please let me ...
1
vote
1answer
274 views

RIA Stored Proc - Service code doesn't get executed

I have a custom stored procedure in SQL Server that I would like to execute via RIA services. I have completed the Function Import with a scalar return type (int assuming stored proc returns the row ...
0
votes
1answer
342 views

How to directly get object from Silverlight WCF RIA Domain Services

I'm starting to use a Silverlight WCF RIA Domain Services and I have one question. So far I was able to fill a DataGrid with data coming from my WCF. This is alright. But I'd like to simply get a ...
0
votes
1answer
167 views

Helper properties from Entities in Silverlight client, shared code

I'm trying to figure out how to create additional "calculated" properties that are exposed in a Silverlight client for a given Entity type. My solution structure is as follows (Simplified): ...
0
votes
2answers
668 views

How can I modify edmx and reflect changes in the domainservice automatically?

I have a silverlight business application created with vs2010 and it is RIA service enabled, I added new table in the database and updated the edmx using (update model from database option), but I ...
0
votes
1answer
134 views

DomainDataSource + DomainService

Is it possible to use the DomainDataSource control with a plain DomainService? I want to page/sort non-entity data.
1
vote
2answers
924 views

How to return List<int> from domain service

Hello guys im using WCF RIA Services i have domain services where i wrote this method public List<int> GetActionIDs() { return (from d in ObjectContext.actions select ...
0
votes
1answer
323 views

Issue with passing objects to domain method

I have WCF Ria Services App with DTO objects. I defined relations between my DTO objects: [Include] [Association("FK_Items_OrderID", "ID", "OrderID")] public List<Item> Items { get; ...
0
votes
1answer
69 views

The result of query is different between the client side and the domain service class in a Silverlight application

I have a query that brings the whole graph of an object: IQueryable<Rapport> rap = this.ObjectContext.Rapport.Include("Filtre") .Include("Filtre.FiltreValeur") ...
0
votes
1answer
355 views

Perform Update Delete with WCF RIA through LINQ

Someone had posted this and i learned how to insert or retrieve the data information from domain context with c# code but not dataform, but now i want to delete, update and truncate the table through ...
1
vote
1answer
371 views

Couldn't load stored procedure through Silverlight and RIA

I want to dump the return into datagrid of silverlight application. I wrote a stored procedure with no key and just return 4 properties. I have imported the function into Entity Framework with ...
1
vote
1answer
123 views

Received RunTimeError when using LoadOperation

I have receive an Visual Studio Just-In-Time Debugger Error An Unhandled Exception("Unhandled Error in Silverlight Application Code: 4004 Category: MangedRuntimeError Message: ...
0
votes
1answer
410 views

Silverlight error when loading many rows from SQL database

I have a Silverlight application that's built with Entity Framework 4, a heap of Silverlight modules ans a Web project that contains my DomainService, Model and Web.Config. I pull data from an local ...
0
votes
1answer
463 views

How to store entities context query object into generic list?

In my last question, i successfully to dump the data into combo box with solution from Leo but now, i want to get everything of specific user and store into generic list. i tried with this code but ...
0
votes
3answers
722 views

RIA does not generate Contexts for multiple Domain Services

Framework: .NET 4, Entity Framework 4, Silverlight 4, RIA services I'm trying to split my Entity Framework model into two domain service classes. The model is not complex - several tables. So I have ...
0
votes
1answer
156 views

MVC Silverlight passing user context

I've got a MVC / Silverlight app and now need to begin passing data back and forward between the two. I've created a domainservice in my MVC project, but my question is regarding user context and ...
0
votes
2answers
894 views

Adding entity in the domain service insert method

I have two entities, Parent and Child, at the client side i create Parent and then call context.submitChanges At the server side in the InsertParent(Parent parent) i do: InsertParent(Parent parent) ...
0
votes
1answer
583 views

RIA DomainService Query with parameters LightSwitch

I am trying to use RIA services in LightSwitch but I get an error when the query in the DomainService has a parameter because the query is not imported into LightSwitch. All the other queries are ...
1
vote
0answers
205 views

Which gives better performance: WCF RIA services or Domain Services?

I am building a new SV application which will be used from the Internet. I am expecting to have a few users at a time, so I will need good performance. Which is better to use: build from 0 WCF ...
1
vote
0answers
272 views

Does not conform to the required signature for an invoke operation

Ok I have a domain service class that only has 2 methods: [Invoke] public IEnumerable<CT1> GetActiveCT1(int ID) { return ...
0
votes
1answer
158 views

How to generate new table related code in existing Ria Service without deleting it

How to generate new table related code in existing Ria Service without deleting it. Please Suggest best Practice. I am having one domain service. I have modified lot of auto generated code and meta ...

1 2 3