3
votes
1answer
33 views

How to reference two tables in Visual Studio 2012 by adding foreign key?

I have a problem adding a foreign key to a table column. My tables look this way. I need to reference ContactOwnerId from Contact table to UserId in UserProfile table CREATE TABLE [dbo].[Contacts] ( ...
0
votes
0answers
12 views

Can't add ADO.NET entity data model

I have installed oracle XE created a table in database with some data installed Oracle Data Provider for Entity Framework on CodePlex created asp.net mvc application added connection(I can see the ...
2
votes
0answers
22 views

To detach or not to detach? entity framework IBindingList issue

I'm working with a VSTO Excel workbook project and I'm trying to manage data crud on a ListObject. I have a POCO class and Entity Framework. I'm passing the entity into the ListObject as an ...
0
votes
0answers
14 views

Layout of an edmx diagram in VS2012

I have an entity framework diagram that has been generated from my database and updated several times. Upon adding new tables the placement of them seems to be a bit random and it has led to a pretty ...
2
votes
1answer
31 views

How to delete object without retrieving it in EF

We have a table that has a couple of nText columns so looking to delete a rows without retrieving it if possible Another twist is that we don't know the IDentity value but a couple of other values ...
0
votes
1answer
20 views

Entity State på VS 2012

I have just installed VS 2012. If I add a new ADO.Net Entity Data Model och skapar en .edmx file, none of the objects in this file have an EntityState property. Why is that? If I set Code generation ...
0
votes
1answer
92 views

Cannot use Stored Procedure on Entity Framework 5

I'm using EF5, database first, VS 2012 update 2 In designer, I right click and select Update model from database, select a stored procedure and save the project, rebuild, then I try to use the stored ...
1
vote
2answers
67 views

Visual Studio 2012 does not have Entity Framework menu

My copy of Visual Studio 2012 does not have Entity Framework menu. How can I get it? http://msdn.microsoft.com/zh-cn/data/jj200620 I'm using Visual Studio 2012 Update 2.
3
votes
0answers
116 views

System.Data.SQLite design-time components in VS2012 targeting .NET 4.0

My application is targeting .NET 4.0 because we plan to continue support for Server 2003 and Windows XP for now. I'm using Visual Studio 2012 with Entity Framework 4.4 (listed as 5.0 in NuGet) and ...
3
votes
2answers
73 views

Synchronizing EF Code First to SQL Azure

I am trying to find the best way to synchronize/migrate EF Code First databases from localhost to SQL Azure without using EFCF Migrations. I know that I could use this approach, but I want to look at ...
2
votes
1answer
130 views

Class Library Error does not contain a static 'Main' method suitable for an entry point

I have two Projects that are essentially class library projects. the One (Net.Data.Entities) contains definition of the entities I use, while the other class Project(Net.Data.DataContexts) contains ...
0
votes
2answers
60 views

SqlCe 4.0 + EF 5.0 stopped working in VS2012

I have created an application almost ready to distribute to clients. It took my several months. Everything worked fine but then I installed VS2012 and all my tests stop working. I tried everything but ...
0
votes
0answers
71 views

Entity Framework files are not recognized in Visual Studio 2010 after installing Visual Studio 2012

I have Visual Studio 2010 Ultimate on my computer and recently I have installed Visual Studio 2012 Professional to test it out. I was going through Julie Lerman's Pluralsight course to learn Entity ...
1
vote
0answers
43 views

“Unable to load the specified metadata resource” ASP.NET

I am getting the error "Unable to load the specified metadata resource". I am new to asp.net and am following this tutorial: ...
1
vote
2answers
157 views

Entity Framework 5 does not generate [Key] attribute

I'm using EF5 with VS2012 and I'm facing a problem when the tables get generated. 1)I create an easy database schema (edmx) that contains 2 tables: Table1: Person Attribute: Id (Guid) Attribute: ...
0
votes
0answers
43 views

Can I uninstall/remove SQL Server 2008/2008r2 after installing SQL Server 2012?

I just finished installing SQL Server 2012 and I was wanting to take advantage of Localdb. I chose not to upgrade my SQL Server 2008 R2 and to install 2012 as a new instance. Unfortunately, I realized ...
0
votes
1answer
88 views

How to create a model using .edmx designer in visual studio 2012?

I'm new with Entity Framework 5.0. I'm looking for a tutorial on how to create a DB model using the .edmx designer in visual studio 2012.
0
votes
1answer
22 views

Opening EF designer with partial diagrams in VS 2010

Recently my team recently upgraded from VS 2010 to VS 2012. At the same time we created a branch of our code base, one that we needed to work on in VS 2010 for legacy support and bug fixes, and the ...
1
vote
1answer
118 views

Entity Framework type initializer exception

I have an entity framework project that is working fine on my machine, but falls over when run from the network. Recent changes to the project include adding the Dynamic Linq dll ...
0
votes
1answer
39 views

“Update Model from Database” wizard is deleting mappings of renamed POCO classes

I'm building an application using EF 5 to talk to an existing Oracle database. I'm not allowed to change any part of the DB schema. I have generated my model from the database using the VS2012 wizard, ...
1
vote
1answer
70 views

Connot add controller in ASP.NET MVC project

I'm trying to add a controller in my ASP.NET MVC project. I am using Entity Framework Code First (5.0), and when I right-click the Controllers folder in my project and selecting Add Controller: ...
0
votes
0answers
74 views

Error getting value from 'ServerVersion' on 'System.Data.SqlClient.SqlConnection'

The Environment: Visual Studio 2012 Professional and SQL Server Express 2012 (localhost\sqlexpress) Here's my connection string: ...
0
votes
0answers
43 views

Entity Framework wizard fails adding new connection

I'm new to Entity Framework. Just trying to add a new model in Visual Studio 2012 using wizard. I get an exception on clicking the "Add new connection" button about: Method not found: ...
1
vote
1answer
181 views

Is it possible to use the Entity Framework designer with SQLite in VS2012?

I've looked around and seen entries that state it should be possible and it should be available anytime now. I've downloaded many different releases (their website contains a metric ton of them) - ...
0
votes
1answer
46 views

Code First Enums not added to Database

I have created .NET4.0 application and using Entity Framework v5.0 with it. Then I read that enums could not be mapped with .NET4.0, it should be .NET 4.5 Then I changed all projects' targeting ...
0
votes
1answer
244 views

Can't find local SQL database from within Visual Studio in my ASP .NET MVC 4 project

I have a project that uses EF 5 (code first) in Visual Studio 2012. When I build the database it works, but it isn't showing up in the SQL Explorer for some reason. I checked the connection object at ...
0
votes
1answer
31 views

Create One-to-One relationship based on PK of both tables

I'm really new to Entity Framework (currently using EF5) and vs2012 and am having difficulty trying to figure something out. I have an .edmx that was generated from my database. It has two tables in ...
0
votes
1answer
52 views

Table not removed in EDMX after deleting in SQL

AM working with MVC4 VS2012 and EF5. I created a EDMX using the DataBase and the POCO(TT) Classes were generated Automatically. Followed this way Entity Framework 5 and Visual Studio 2012 POCO ...
0
votes
1answer
382 views

Entity Framework Code First Default Database Location

I am trying to follow the video tutorial on http://msdn.microsoft.com/en-us/data/jj193542 using Visual Studio 2012 Express for Desktop. I created POCO's, and a DbContext, ran some sample queries and ...
0
votes
0answers
188 views

EditIemTemplate in GridView that is contained in a ListView shows only after Edit is clicked twice

I'm using EntityFramework to show a list of students (Referral), each student can have one or more siblings (Sibling is a Navigation Property of Referral). In order to display the sibings for the user ...
1
vote
0answers
126 views

Do VS Database projects and Entity Framework work together?

I've always been intrigued by Visual Studio Database Projects, and while they seem to be quite capable, I've never used them to any great degree outside of simplistic proof-of-concept work. I want to ...
2
votes
1answer
46 views

How create expiration for row in SQL Server

I have a table LoginControl in a SQL Server database. I want automaticaly delete property after 30 minutes from adding. I have two properties (LoginId and Token) in the LoginControl table and I ...
0
votes
0answers
294 views

asp.net mvc4 entity framework 4: Unable to create a Controller, and I've tried everything

I'm building a website using Visual Studio 2012 with MVC4 and Entity Framework 4. I created all my model classes, with all their attributes (with some relationships between them). So far, my classes ...
0
votes
1answer
58 views

Getting a list of EntityValidationErrors' in the immediate window

How can I get a list of errors in the immediate window when this breaks in VS 2012 Validation failed for one or more entities. See 'EntityValidationErrors' property for more details. there ...
3
votes
1answer
65 views

EF5: Unused and unknown column causes problems

Ok, so I have 2 entities: Course and Industry The industry entity is just a reference table which lists all available Industries that can be tagged to a course, to categorizing them. I put in a ...
0
votes
1answer
249 views

How to update database from model, visual studio 2012 and EF5

I have the usual approach to create an entity data model and have all the models ready. On initial connection or in setting up the database, we normally do the "Generate Database from Model..." option ...
0
votes
1answer
23 views

What do the alternatives for the dialog “Delete Unmapped Tables and Views” do?

I have an entity framework model connected to an SQL Server database. I want to remove a table from the model but not from the database. So I press delete on the table in the model and get a dialog: ...
3
votes
1answer
232 views

When publishing from VS 2012 to an Azure Website my Entity Framework seed data is not inserted in SQL Azure

I have an ASP.NET MVC application that uses Entity Framework 5.0 and Code First. I have published my website using Visual Studio 2012 to Azure Website. Everything seems to work except that the seed ...
1
vote
1answer
97 views

Visual Studio 2012 Group Solution need individual connection strings per developer

We have a project that is being worked on currently by 5 developers and could get more at any time. The developers are located at different places in the US. Our back end is Code First Entity ...
1
vote
0answers
31 views

How do I get entity framework to let me set a storegeneratedpatternfield?

I have a field in one of my entities that is being used as a id field. The issue is that this particular field can have duplicates in it due to support versioning data support. I have the field set to ...
0
votes
1answer
90 views

How to check whether .edmx model is using DbContext or ObjectContext in c#

How can i programmatically check whether my .edmx entity framework model is using DbContext or ObjectContext in c#?
1
vote
1answer
87 views

How to map complex one-to-many with Entity Framework and Fluent API

I'm coming from Java and is now implementing an existing system into a database with C# and Entity Framework. Since I cannot show the actual classes here, I've tried to make an example identical to ...
0
votes
1answer
175 views

Project migrated from old PC and from VS2010 to VS2012 “The wait operation timed out.”

I just got a new Windows 7 computer with VS 2012. My old box was Windows XP with VS 2010. I copied over my project and had VS2012 upgrade the project and get the following error when running the ...
0
votes
2answers
651 views

how to add mysql data source in visual studio 2012 express for web

i'm trying to add mysql connection to my asp.net mvc 4 projects but i dont see it on the data source window. after installing visual studio 2012 express for web i added mysql Connector/Net through ...
2
votes
0answers
142 views

Very slow Entity Framework model designer in VS2012

I recently upgraded a project that uses Entity Framework from VS2010 and EF4 to VS2012 and EF5. The model was derived from an existing DB with good schema, has approximately 70 entity types, 20 ...
0
votes
1answer
87 views

Turn Off Navigation Properties

Using VS 2012, Entity Framework 5 and SQL Server Express 2012. I have a SQL Server database to service an application using Web API; as it is mainly for use on mobile devices, I want to minimize data ...
0
votes
1answer
580 views

Add data source in Visual Studio 2012 Express for Web

I am using Visual Studio 2012 Express for Web on Windows 7. But it is not opening .sdf files. I searched a lot about this problem. Found many solutions on many forums. Later, I understood that I need ...
0
votes
3answers
131 views

Creating EF controls in MVC with enums as keys

Ok so here's some context: I'm using EF5, MVC4 and SQL CE4 to build up a web application. I've been loosely following this tutorial with a few differences. My context class and POCO objects are ...
1
vote
1answer
71 views

Code first Model foreign key property SocialDetails is null even when the ID's match in the DB

I'm trying to debug a DBContext query and the generated SQL looks like this SELECT [Extent1].[Id] AS [Id], [Extent1].[Name] AS [Name], [Extent1].[SocialDetails_Id] AS [SocialDetails_Id] FROM ...
0
votes
1answer
282 views

Visual studio 2012 migration (Entity Framework) connection string error

I'm using Visual Studio 2012, EF, trying to update my database using the console but it fails. I get a message that the connection string is incorrect although in reality it is fine.

1 2 3 4