0
votes
0answers
23 views

Binding SilverLight Treeview From ViewModel Using Entity Framework

I've got a database structure similar to this: Project ProjectID(pk) ProjectName ProjectFile ProjectId FileId(pk) Notes I have to bind a silverlight treeview the Parent should be the ...
0
votes
0answers
18 views

Advices on layered architecture for my app (two processes, one machine)

I'm trying to have a good architecture for the program I'm doing, but I struggle with the well-known concepts as I do it for the first time, so bare with me. I'm trying to make a windows application ...
0
votes
0answers
34 views

Exception (ProviderIncompatibleException) on transactioned WCF service icm Entity Framework / SQL Server

I created a console application that reads my messages from a msmq. When a message comes in the application picks up the message. When I make my WCF call transactioned with: ...
0
votes
0answers
29 views

EF5 issues - table splitting

I'm having issues with table splitting because I need the same table columns in both entities. Is there a way of doing that? My example scenario. Table MESSAGES has id, sourcesystemid, ...
1
vote
0answers
39 views

Intermittent “An EdmType cannot be mapped to CLR classes multiple times” exception

I have an IIS-hosted WCF service that connects to a SQL database backend using Entity Framework 4.1. Occasionally, I will receive the following exception: An EdmType cannot be mapped to CLR ...
1
vote
1answer
41 views

Model Tracking In Entity Framework

We were using Microsoft WCF Web Services and Entity Framework ORM in our project. When client call each Web Services,Entity Framework keep state of each model in memory for tracking model state for ...
0
votes
0answers
70 views

WCF + EF5 + Oracle issue! Cannot connect when deploying WCF service

Good morning y'all! I'm getting a problem here that's making me nuts!!! When I execute locally my service, everything works perfectly...but when I deploy my WCF to the server, well, it gives me an ...
0
votes
1answer
46 views

How to return an EF object as WCF method result

I'm working with EF and WCF. I would like use the object generated by EF as object returned from a web service method. In the OperationContract method I do something like this: try { b = (from bon ...
1
vote
1answer
59 views

Using Entity Framework classes in WCF service without recreating the model

I have a dll project that holds an edmx. In the same solution, I have a WCF Library project and within this project is an interface and a class to hold all OperationContracts. I've noticed that this ...
0
votes
0answers
497 views

getting error “Authentication with old password no longer supported, use 4.1 style passwords.” while creating WCF service of hosted MySQL database

I have MySQL database hosted on server. I want to create WCF web service of that database. Actually I want to comsume WCF service in Windows Store App. I am following these articles. Using an Entity ...
0
votes
1answer
50 views

Navigation property is null while calling WCF method

I have the following code that is layered as below: Data - DbContext database access. Entities - POCO entities with INotifyPropertyChanged WCF Service - Uses Data and Entities Test Library Here is ...
0
votes
0answers
33 views

EF ObjectContext with WCF InstanceContextMode=InstanceContextMode.Single

Steven Sanderson talks about thread safety issue of the ObjectContext in this article. Asp.net applications which uses services pass the httpcontext all the way to the lower level data access layer ...
0
votes
0answers
33 views

EntityFramework data returned in WCF method

I have a WCF service acting as a data layer between a web site and a SQL database. I'm using EntityFramework 5.0 (Code First). I have an object that I'm returning from a method that contains ...
0
votes
1answer
49 views

Can't correctly add associated objects into Entity Framework Context

I have and entity framework project exposed via a data service: public class VersionContext : DbContext { public DbSet<VersionTreeEntry> VersionTreeEntries { get; set; } public ...
0
votes
0answers
40 views

Entity Framework WCF IIS issue

I have created a WCF service and hosted in IIS. In my entity framework when using Windows authentication getting exception "underlying provider failed on Open". When it is SQL authentication or incase ...
0
votes
2answers
91 views

Entity Framework Can Not Save My Change

I'm using the following design: I'm using AutoMapper for the domain/DTO conversions (both ways), Entity Framework Code First, and SQL Server 2012. Each table has a field named RowVersion of type ...
1
vote
1answer
148 views

Where to place calculation logic in N-Tier C# application

I am working on an N-Tier application in C# using the following application structure. My Solution structure. UI - WPF Prism and ViewModels connects to Services. Used by store employees. Services ...
0
votes
1answer
51 views

Multiple many to many inserts

I have a WCF Data Service with oData running and try to insert data into it. I'm trying async from a windows 8 client. My entity looks like this: Customer 1 -> m CustomerAddress 1 <- m ...
1
vote
0answers
179 views

WCF DataService and EntityFramework POCO Proxy

I have the following code: public class MyDataService : DataService< MyCustomContext > { public static void InitializeService(DataServiceConfiguration config) { ...
-1
votes
1answer
205 views

Sample source for MVC, EF, WCF ,Repository and UOW pattern [closed]

I want to start a MVC project, can you please guide me if you have any sample source available which could be suitable for medium scale application? I want something with MVC with EF,WCF,Repository ...
3
votes
1answer
224 views

WCF Service Application and MVC4 Application hosted on local IIS (not express) throwing connection string erro

There are already a handful of questions out there but none seem to have gotten any attention or answers to what is causing this error, and how to fix it. Background I have created an ASP.NET MVC4 ...
1
vote
2answers
64 views

How to return an ID if I add Data on AddObject?

I'm using the WCF Data Service client and try to add an object to my datacontext (EntityFramework). The Object is added but I can't use the id afterwards. Is there any possibility that after ...
0
votes
0answers
13 views

doubts about POCO templates in VS2010

I am interesting in create a POCO entities for a N-Tire application that use EF. How I am using VS2010, EF is the version 4.0. I can see that I can install some extensions that create this POCO ...
0
votes
1answer
35 views

How to create and detect changes in sparse DTOs?

I'm developing some WCF services that are backed by a DAL that leverages the Entity Framework. The clients, services and the DAL communicate with one another via Data Transport Objects (DTOs) in the ...
1
vote
1answer
39 views

Sql server should be in the same system when hosting Web service in IIS

I created a WCF service in that i am using entity framework where Sql server is located in another system. I created a web-application and consuming the service and i am having no trouble with the ...
0
votes
2answers
315 views

WCF - An error occurred while receiving the HTTP response to http://xxxxx/Service/

Before you downvote, I know there are duplicate questions like this one out there, but I tried and did not succeed in finding a solution in them. Could be I missed something, but I am still relatively ...
0
votes
0answers
83 views

WCF-REST POST Methos not work with C# Winform Client with multiple User defined Complex objects

I want to create WCF-REST Service which can Have JSON/XML input & Output.In POST Method if i take MessageBodyStyle.Bare it works but only for Single Parameter but i want it to work for Multiple ...
0
votes
1answer
24 views

When i want to retrieving the image from database ,It showing me a ApplicationName and WCFService Name and Class name why?

In WCF Service I am making [ServiceContract] public interface IService1 { [OperationContract] CompositeType QuestionRetrieve(String email); } [DataContract] public class CompositeType { ...
0
votes
2answers
112 views

Win8 - WCF/Entity Framework with SQL Server DB Does Not Work when Deployed to IIS

I have a similar problem to WCF/Entity Framework with External SQL Server DB Does Not Work when Deployed to IIS except that this is on Windows 8 and the database server is not remote. It is on the ...
0
votes
0answers
28 views

Update ICollection property using WCF

I'm using WCF and Entit Framework 5.0, Code First. I have an entity with an ICollection of another entity type. I'd like to update the entity with a new set of related entities. I'm trying to do this ...
1
vote
2answers
36 views

WCF Interface not Implemented

I am new to WCF and don't know what's wrong, I get the following error: WcfServiceLibrary.ReportServiceCO' does not implement interface member ...
0
votes
0answers
47 views

How objects are passed from SharePoint Business Connectivity Service to WCF to EF and to the Database

In an application we have different layers (BCS, WCF, EF) and just wanted to understand how the objects (poco entities) are passed from WCF to BCS and from BCS to WCF to EF and finally to the ...
0
votes
2answers
65 views

Entity Framework left outer join not working

I have an Entity Framework model with the following classes (I have simplified the classes for simpler viewing): PuzzleItem -PuzzleId (int, primary key) -Title PuzzleProgress -ProgressId (int, ...
0
votes
1answer
157 views

Silverlight enabled WCF Service and Entity Framework 504 issue

I'm building a Silverlight MVVM template and and am getting stuck with the WCF Service returning and Entity Object. Here's what I did: Using Entity Framework on the server side Created a small test ...
0
votes
1answer
50 views

Why we have to delete edmx and recreate it anew on the server, every change we make?

We make some WCF service that uses Entity Framework (edmx file). Every time we make a change (even not related to the framework / DB), we have to delete the edmx and recreate it and build the solution ...
0
votes
0answers
48 views

Data Entity Auto refresh in IIS WCF service using Ninject

My problem is some what related to How to force a WCF data service to refresh entities? but still I could not be able to get it through. I am using Ninject in my WCF service to instantiate all ...
3
votes
1answer
141 views

How to use multiple databases (MSSQL) in one service or DAL?

I have been looking through a few different threads all over the interwebs and either I can't see that the proposed solution will work for me, or their particular situations are not the same as the ...
0
votes
2answers
52 views

Load table from a database at the first reference in context

I'm using Entity Framework 4.0. I do a lot of read operations on the database (data analysis). No data will be saved. Currently, despite the Lazy Loading, number of I / O operations to the database ...
0
votes
1answer
123 views

Multiple edmx in one project

I have a project with one edmx file. Test class works correctly.when i add the edmx with a different name and namespace, but connect to a similar base structure ,After the addition, before acting ...
0
votes
3answers
191 views

WCF Performance : Connection to WCF Service takes long time

I have a WCF service hosted on IIS 7.5 on my server. I have used Entity framework 5.0 in my service. When I call that service from my local system by adding service reference and creating client in a ...
0
votes
1answer
328 views

Steps to use Entity Framework in WCF

I have a question using Entity Framework in WCF. I am using .NET 4.5 with EF DbContext. Here are the things I know to do to use EF in WCF. May be they are insufficient or some are not required. ...
1
vote
1answer
217 views

How to create a CRUD WCF service automatically from a EntityFramework data model?

I have created a data model with EntityFramework 5 and want to use it as a WCF data services. Is there any Framework that can generate this Service automatically out of the DataModel? Basically I ...
1
vote
1answer
598 views

Multiple Projects in a solution - Entity Framework and ASP.Net MVC 4

For a school project I am building an application that has to be splitted in multiple projects. The projects that will be made are class libraries, a wcf service and a asp.net MVC4 application. The ...
0
votes
2answers
238 views

Repository pattern with Entity Framework: How to make .Include work when the context is not alive?

I am using entity framework and generic repository in my project. Following is one of the method in my repository. public IQueryable<TEntity> GetQuery<TEntity>() where TEntity : class ...
0
votes
1answer
95 views

The underlying connection was closed error while using .Include on EF objects

Following line of code gives me an error saying "The underlying connection was closed". return this.repository.GetQuery<Countries>().Include(g => g.Cities).AsEnumerable().ToList(); But if ...
0
votes
1answer
33 views

Silverlight, WCF Ria, EF, flow

Can someone please explain to my how the flow is when i have a Silverlight Application that uses WCF Ria and Entity framework. So I better understand where to secure the transport of information. I ...
0
votes
0answers
155 views

Using Entity Framework with WCF for WPF and ASP.NET MVC clients

What is an appropriate approach for using EF5.0 with WCF for the following architecture? Sample.Data (EF) Sample.Entities (POCO) Sample.Service (WCF) Sample.Client (WPF) Sample.Web (ASP.NET MVC) ...
-1
votes
1answer
119 views

Unit testing WCF Rest Service with Entity Framework

I created a wcf rest service and added a entity Framework database, having issues doing unit testing some of the methods. I get error asserting the connection string is not there or invalid. I am ...
0
votes
0answers
92 views

WCF Service - Complex Response Objects with Client Filtering

I'm implementing a WCF Service exposing complex objects. e.g. GetFootballTeams request returns: Team Name Nickname Founded Reputation Manager Name Nickname Reputation Players[] ...
0
votes
0answers
155 views

Value cannot be null. Parameter name: source (Tables with foreign keys)

I'm getting an error that says: "Value cannot be null. Parameter name: source". What I'm basically doing here is that Tag Number has a foreign key from TagType table. I've added a linq statement in ...

1 2 3 4 5 11