0
votes
0answers
8 views

Entity Framework One 'Create' view for multiple models

Here is my 'Mentees' model: { namespace BEMentoring.Models { using System; using System.Collections.Generic; using System.Collections.ObjectModel; using ...
-3
votes
1answer
17 views

Entity framework using vb.net,stored proc and involve multiple tables

I have a person table with first name,last name, phoneid other details. The phoneid is an identity column in Phonetable. I need to add/update the person info. First, it should check if the phone ...
0
votes
0answers
41 views

context database.sqlQuery<type>() with dynamic parameter list

i have a problem with an sqlQuery/Exec. My Stored Procedure returns a list of entitys. But i need to append the parameterlist dynamicly. using (MyContext db = new MyContext ()) { ...
0
votes
1answer
13 views

Entity Framework dbset not finding added entity

I am having an issue understanding why when adding a new entity to a DbSet of ObjectContext, that entity is not found will looking it up again. using (var db = new SmartrailDB()) { ...
2
votes
1answer
55 views

Entity framework DBcontext add child row

As I understand, to add a child row, you can either do parent.Children.Add(child); or child.Parents= parent Then you can do myContext.SaveChanges(); Somehow the second solution doesn't do the ...
0
votes
1answer
56 views

Entity Framework - Linq to query where value in a list

I'm using Entity Framework on .NET 3.5 and I can't for the life of me figure out how to write some Linq to traverse the following design: Basically I am trying to figure out if a user has permission ...
0
votes
0answers
16 views

Entity Framework one to many with 3 tables

I have three models that have a one to many relationship between the first and second, and second and third and would like to set up a one to many between the first and third model. This is used to ...
0
votes
1answer
20 views

The ObjectContext instance has been disposed

I'm using .Net 4.0 EF 4.0. I have three tables in the database myentity, mygroup and myapplication. the myentity may belong to 1 to more mygroups and have 1 to more myapplications and mapped to the ...
0
votes
1answer
57 views

How to assign dynamic data source to GridView using Entity Framework?

I have an Stored Procedure which may return some unpredictable rows and columns, based on some business logic written in my SP. That is for sure that it will return only one set of Result Set data ...
0
votes
1answer
34 views

Binding data to combobox in WPF

I am a beginner in programming, especially WPF. I have an application in WPF. I have changed connection to .sdf database from Entity Framework to SqlCeCommand. Unfortunatelly, before this I had the ...
0
votes
2answers
52 views

Left Join in Entity Framework

I'm trying convert this SQL to Entity Framework LINQ, but don't working. My SQL code: SELECT s.Id, s.OriginalPhotoBlobId, s.PhotoBlobExtension, ISNULL(s.ProductSkuKey, p.[Key]) as ...
0
votes
1answer
23 views

How to Create Custom Partial CLasses in VS 2012 EF Model

Just started using VS 2012 and I generated an EF Model from the database. All worked fine, although in my previous experience I had to put a using in my code. I tried to set up a .cs file with ...
0
votes
0answers
15 views

Entity Framework Left Join possible? [duplicate]

In my DB i got Cells that have multiple Stations. I also Measurements for a given Day. Then there are Counts that have a Station and a Measurement. Is it somehow possible to get a List of Cells ...
0
votes
1answer
44 views

The context cannot be used while the model is being created

I'm getting a problem with my entity framework usage and think it could be because I'm using my DB context incorrectly. Every now and then I'm seeing error messages in my log stating: "The context ...
0
votes
0answers
7 views

MetaDataException using ObjectContext but not using DbContext

I am trying to use the EF with Poco as described in http://msdn.microsoft.com/en-us/library/vstudio/bb738471(v=vs.100).aspx. In my sample I have a DbContext generated using Visual Studio and I am ...
0
votes
1answer
242 views

SQLite and Entity Framework

I'm trying to use SQLITE database with latest Entity Framework. I've installed SQLite provider x86 for .NET Framework 4.0 from here: ...
2
votes
0answers
35 views

OutOfMemoryException with very simple WPF application with Entity Framework

I have searched for this question, but I have only found questions where people were loading tables with millions of entries. This is not the case in my situation. I am fairly new to WPF and new to ...
0
votes
0answers
18 views

How to use same .NET Entity framework Dbcontext object in different in web pages?

I need to use same instance of a Entity Framework DBContext object through out a web application. That is basically a same Record from a table in different web pages. For that I created a static class ...
1
vote
1answer
86 views

SQL to Entities syntax for INNER JOIN and DISTINCT

I'm a bit fresh to Entity Framework, and need some advice on the syntax. My goal is to retrieve a distinct list of filtered equipment from one table and match them to ID's in another table. Here is ...
1
vote
1answer
20 views

Entity framework starter kit on VS 2012

I have downloaded and installed the Entity Designer Starter Kit on both VS 2010 and 2012. I've created a project and have customized that project to allow me to add (for now) three attributes for ...
0
votes
0answers
147 views

Entity Framework 5 IBM DB2 EntityException The underlying provider failed on ConnectionString

I am using Visual Studio 2012 to build a web application. The application uses webforms, Entity Framework 5 with an IBM DB2 database server. I have the latest IBM Drivers v10.1.2 installed on both my ...
0
votes
0answers
15 views

EF4 How to map a shared table to indirectly related principal tables

I have searched for the solution but as the title may suggest my main difficulty in finding out how to do this is my inability to describe what I want to do succinctly. It is a simple plan (or so I ...
0
votes
0answers
20 views

Using Object Data Provider for Entity Data Model

I am new to "Entity Framework" in .Net and what I am trying to do is to build a Data Model in my .Net application using it. My application is a N-Tier application. One tier is the database that holds ...
0
votes
0answers
124 views

Entity Framework, WPF, validation of single entity

I am new to entity framework and WPF. Having read quite a bit I am trying to implement the MVVM pattern along with the Repository pattern. The problem I have is around validation. On my types ...
1
vote
1answer
98 views

entity framework code first map entities to different tables

I have classes something like below. I would like to reuse classes and persist them in different tables by using entity framework code first. public class Product { public int Id { get; set; } ...
0
votes
0answers
69 views

Entity Framework inheritance over different assemblies

I'm quite new to Entity Framework, but the more I worked with it, the more I actually liked it. But now my passion is at risk, as I'm struggeling with an issue that already made me crush my head ...
0
votes
1answer
60 views

Code First Entity Framework Slow When Properties are Missing

I'm using Entity Framework 4.3.1 Code First. I have a pretty simple expression and entity model. using (var PMCtx = new PMContext("PMEntities")) { var results = ...
1
vote
1answer
100 views

Cannot save record using Entity Framework

Can someone help? I am an absolute beginner. But I searched the net. There are not many example shown in VB anywhere. I have created a test project which holds the win form. Then added another ...
0
votes
1answer
24 views

Expression of type 'Territory_Manager.HtmlAddressGenerator+Entry' cannot be used for return type 'System.Object'

i realy hope there is someone out there who can help me. I have the following sql statement (just replaced real column values with ''). string sqlstatement = @" SELECT ...
0
votes
0answers
36 views

How to set the default value to a entity property using code first

I have a class as follows (refers to a datatable in the sql thru Code first entity framework) public class MillDCCampus : { public int ID{ get; set; } public string MillDC { ...
0
votes
0answers
89 views

Deploying Entity Framework 5 in production without using Nuget

Using the Nuget package I downloaded and used Entity framework. I created a class library use the Entity framework and another windows forms application that uses the library to create data. While ...
0
votes
0answers
125 views

TypeScript port of Artemis Entity System framework - code review and contributors needed [closed]

I present you port of the Artemis Entity System framework to TypeScript Before you start dive in the code go check the Artemis documentation and examples, cause they are 99% the same as this TS ...
0
votes
1answer
39 views

Object out of context - C# MVC/JSon/EF5

My object eventTypeList goes out of context, even if its in the using. Any advice? error message: The ObjectContext instance has been disposed and can no longer be used for operations that ...
0
votes
0answers
14 views

Entity framework eager loading with Include

public class Like { [Key] public int LikeId { get; set; } public int PostId { get; set; } public int Likes { get; set; } } public class LikedBy { [Key] public int Id { ...
1
vote
0answers
94 views

Visual Studio 2012 Add controller with Context fails when connectionstring configSource in place

Working with VS 2012 + MVC4 + EF5 trying to add controller with Context fails when connectionstring configSource in place with Error : "Unable to retrieve metadata for MvcTestApp.Models.DummyClass. ...
2
votes
2answers
149 views

Entity framework - objectcontext disposed exception

I've been debugging this program without any result, and unfortunately I can't see the root of the problem. I get this exception: The ObjectContext instance has been disposed and can no longer be used ...
0
votes
1answer
48 views

Entity Framework Handle Connection Loss

Our application is using EF 5 and c#.net 4.5. Since our application is used around the world with one cenral server, we have problems with running into timeouts and losing the connection to the ...
0
votes
0answers
102 views

Entity Framework Power Tools beta 3 reverse engineering with oracle database

I was able to generate my POCO with the tools but the naming of the name of the classes is all UpperCase. I try to modify the entity.tt file but no luck. I want to know if someone has a hint for ...
0
votes
0answers
35 views

How to map same type items in model class with entity framework

I have a model class named Product and i want to relate one product to another. I could't find a proper entity framework solution. I tried every fluent api codes but no luck. I'm stuck here. Here is ...
0
votes
0answers
39 views

Entity framework,OptimisticConcurrencyException, Composite primary key includes identity column

I have create a simple table which has composite primary key . Primary key includes identity column. CREATE TABLE dbo.[MyOrder] ( order_id INT identity(1,1) Not Null ,orderDate DATETIME ...
1
vote
1answer
378 views

Setting up databind for a listview using c#

I'm fairly new to using entity framework and Linq. I have a ListView in a webform that I want to populate when an "area" is chosen from the dropdownlist at the top of the page. The data will be based ...
0
votes
0answers
189 views

Error when installing Entity Framework on VS2012 Nuget

When I try to install the entity framework NuGet package I keep getting an error about not being able to add a reference to System.Data.Entity which from what I understand contains the older ...
0
votes
0answers
24 views

Preventing Only One EF property from being set without throwing exception

my environement is VS2012, C#, partial void OnAmountChanging(decimal value) { if (value < 0) { throw new ArgumentException(); } } I want to prevent negative values for only ...
0
votes
0answers
63 views

I want to sum an account amounts all in one query

I have a table called Ledger. It contains many records and I want to do the following: get all records of each account_code and sum them all i also want this to be done using a single query since i ...
0
votes
1answer
40 views

Using entity framework, how do you select the datalength of a column plus other column data

If I have a SQL table X with columns A and B, and I want to select the DATALENGTH of B, as well as column A, how do I do this in a single expression? For example: var results = dc.X.Select(x => ...
1
vote
0answers
107 views

Entity Framework 5.0 Multiplicity constraint violated

I have a Multiplicity constraint violated error that I can't fix. Multiplicity constraint violated. The role 'Log_Main_Combinations_Source' of the relationship ...
-1
votes
1answer
46 views

Log Exceptions with Entity Framework

I want to log the query which is generated by entity framework and failed. How to achieve that?
0
votes
0answers
53 views

Can't find Reverse Engineer Code First in Solution Explorer after installing ProPowerTools.vsix

After installing the ProPowerTools.vsix for Visual Studio 2012, I'm not able to find the Reverse Engineer option in Solution Explorer when I right click on the project > EntityFramework menu option. ...
0
votes
0answers
33 views

Silly error while using Oracle temporary table and Entity framework

When I run my function in 1st and 2nd time, there as no data. But when I run in 3rd time there are 15 record. Why? I'm using store procedure in Oracle to insert data to temporary table. Then I create ...
0
votes
1answer
64 views

System.IO.FileNotFoundException: Unable to resolve assembly 'nameOfDll'

Have a Visual Studio 2010 application that use Entity Framwork to bind controls. After publishing the application to IIS 7.5, I get the following error stack trace message. This does not happen when ...

1 2 3 4 5 7