The ef-model-first tag has no wiki summary.
0
votes
2answers
23 views
Entity Framework Inheritance and Logic
I've been creating a prototype for a modern MUD engine. A MUD is a simple form of simulation and provide a good method in which to test a concept I'm working on. This has led me to a couple of places ...
0
votes
1answer
28 views
Database design with a single entity with many different units
I'm new to database design and I am working on a project that requires the use of a single entity (medication) that could be tied to any number of patients and each patient could have a different ...
0
votes
0answers
30 views
Object inheritance in entity framework with no base table
I'm trying to do something but I'm not sure it can be done with entity framework (4.0 or newer). I have several tables and some common functionality I want to spread among them. This functionality ...
0
votes
1answer
36 views
Move model first to code first EF 5
How can I move from Model First approach to Code First approach of Entity Framework development? I need it to enable EF Migrations.
0
votes
2answers
52 views
Location of EntityFramework T4 templates
When you do database-first or model-first (EDMX) in EntityFramework, I believe Visual Studio generates code off T4 templates, I would like to create a new out of the default and throw some ...
0
votes
1answer
54 views
Fix Entity Framework inconsistent FK underscore
I'm fine with FK names of "Table_Id" OR "TableId" in my table. But the Entity Framework SQL generator is using both.
Mapped associations (independent associations, FK properties visible): no ...
3
votes
2answers
39 views
What to use with a half-designed database? Model-First or Database-First?
Let's say you have a database that is currently in use. It has one table that contains some information about Customers.
And let's say that you want to create an application around it. You need to ...
0
votes
0answers
21 views
EF5 classes are NOT generated against existing database
I followed this tutorial:
http://msdn.microsoft.com/en-us/data/entity-framework-model-first.aspx
I was able to create the tables in the DB, but the poco classes didn't get created under my .tt files ...
0
votes
0answers
28 views
InvalidOperationException while saving and validating entity derived object
In my application (.NET 4.0) I have entity class Supplier that is auto-generated by Entity Framework 5 because of using Model First Approach. Thus, in DbContext class I have DbSet(Of Supplier) ...
0
votes
1answer
61 views
Get entity facets and other metadata on runtime
I have .NET 4.0 WinForms Application, and I use Entity Framework 5 with Model First Approach. In VS EF Designer, I have created a dozen or so entities with a lot of scalar properties of String type, ...
0
votes
1answer
63 views
How to handle cascading deletes on inherited tables?
I've run into a problem with ON DELETE CASCADE when using inherited tables.
I've got the following tables (model first)
Now if I want to delete an entry in Entity1.
using (var ctx = new ...
1
vote
1answer
97 views
EntityFramework 4.1 Code First Oracle Inserting PL/SQL Code
My project has two EF 4.1 contexts, one is model-first and the other is code-first. Both contexts extend DbContext and are connecting to an Oracle database.
When executing an update to a large table ...
0
votes
1answer
94 views
How to change navigation property return type
I read the following article about EF5 Databinding with WinForms.
I use VS2010, .NET 4.0 and EF5 Model First approach, and I don't know how to change navigation property return type in VS2010 EF ...
0
votes
0answers
60 views
Populate database using EF 5 MF
My question is similar to this topic: How to populate a database using entity framework, however it is applied to Entity Framework 5 Model First approach. I wonder is it a possibility to write some ...
0
votes
0answers
78 views
How to change foreign key names in table many to many?
I have been working on implementation of sql membership provider to my project.
.Net ver: 4.5,
Entity framework ver: v4.0.30319,
Visual Studio 2012 Ultimate,
MSSQL 2012 Express
My Question is:
How ...
1
vote
1answer
140 views
Associations strange behavior
I found a following issue regarding EF5 running under .NET 4.0, in Model First approach:
I have following auto-generated entity:
Partial Public Class Notice
Private _id As Integer
Public ...
1
vote
1answer
304 views
Entity Framework 5 and MySql in Visual Studio 2010 - Model First issue
I have application developed in Visual Studio 2010, .NET 4.0, using MySql database.
I have installed Entity Framework 5.0 and EF 5.x DbContext Generator for VB (using NuGet), then MySql Connector ...
0
votes
0answers
21 views
Generate SQL script for part of the EF model
Is it possible to generate SQL script from EF model for just selected entities? I have one entity, that is independent of the others, I made changes to the entity, and I want to update just that one ...
2
votes
0answers
88 views
Entity Framework Model First and Code First TPH issue
I'm facing two problems by trying to make a model first or code first using TPH concept.
The problem is that I need to use table per hierarchy at three levels, so that:
When I use Model First, the ...
0
votes
0answers
111 views
Entity Framework Generate Database Schema (SQL) with Default Table Values
I am using EF 5 and SQL Server 2005, Model First (sort of).
By sort of, I mean that I typically build my schema in the SQL Server designer, but import the schema into EF so I have a visual view. ...
4
votes
2answers
167 views
Learning Entity Framework for using with MVC, Which approach to take first?
I'm a beginner to MVC, as well as EF. I've decided to understand things more clearly in order to perform well using these technologies.
Now, i've started reading about EF, and knew that there're ...
0
votes
0answers
146 views
EF 5 and DbContext.Database.Create doesn't add datetime2 in tables
I'm using EF 5 and model first approach in my project. I want to use the datetime2 type in my sql server 2008 database and I also want to use the DbContext.Database.Create method to create my database ...
1
vote
0answers
167 views
Adding a custom t4 template to DDL Generation Template dropdownlist
I know I can add the template in the folder
C:\Program Files (x86)\Microsoft Visual Studio
11.0\Common7\IDE\Extensions\Microsoft\Entity Framework Tools\DBGen
to make it visible in the DDL ...
1
vote
1answer
76 views
Linq trowing Exceptions
I create a project where I use EF with LINQ and Model first. So, based on my edmx I created my Database and also my classes.
So I got some problems. I created a Click to test if my code is working.
...
0
votes
1answer
356 views
EF model first with MVC Repository Pattern
Attempting to create an MVC project using EF and the Model first approach.
In order to implement it in a way that the Web and data portions are loosely coupled I'm attempting to implement the ...
1
vote
1answer
47 views
Remove auto generate comments
I create some classes using Model First, EF4x as you can see a similar example in this answer from algreat.
My question is about the default comments that are generate as it shows in the block-quote ...
1
vote
0answers
35 views
Error after changing column name
I'm using entity framework model-first. Recently I've changed in my table Clip column name from PropertyName to Name. Clip has foreign key with id o table Main. I want to add new record to table Main, ...
0
votes
1answer
29 views
EDMX designer custom association
I have a problem with edmx desginer. I have one table (Comment) and one view (User). I want to add association between them, UserId in Comment. When I'm doing it I get additional column in Comment - ...
1
vote
1answer
215 views
Entity Framework - Manually Add Properties to Many-to-Many Relationship - Model First
Scenario:
As mentioned here, once you add additional properties to a simple join table (many-to-many relationship), it's no longer a hidden association. These questions also address this:
...
1
vote
3answers
268 views
MV4 Application with EF5 model first, without ViewModels or Repositories
I'm building a MVC4 app, I've used EF5 model first, and kept it pretty simple. This isn't going to a huge application, there will only ever be 4 or 5 people on it at once and all users will be ...
2
votes
3answers
173 views
EF 5 Model First Partial Class Custom Constructer How To?
EF has generated for me some partial classes, each with a constructor, but it says not to touch them (example below), now if I make my own secondary partial class and I want to have a constructor that ...
1
vote
1answer
30 views
mysql.data conflict something in my entity framework project
I'm using MySQL database in my Ado.Net project. So I am using entity framework model first. It is good but when i want to add "mysql.data" (which i get from mysql web site named mysql data connector) ...
0
votes
1answer
208 views
Repository pattern in entity framework model-first design
I could not find any exact information which platforms are suitable for repository pattern implementation. I have a MySQL DB and console app that is written in VS 2010. I am using Entity Framework 4 ...
1
vote
1answer
61 views
What kind of parameters do I have to send to a WCF endpoint to insert an entry into a table that has a relationship with another table?
I'm working with Visual Studio 2012 and developing on C#. I just started started working a WCF web service, I created the database through the Model First approach and so far I've been able to insert, ...
1
vote
1answer
113 views
1:1 relationship problems with EF Model First
I'm trying to develop an application as Model-First with EF. I tried everything to accomplish a table-splitting pattern and a 1:1 relationship but looks like EF just doesn't let me.
Assuming I do use ...
3
votes
0answers
149 views
how to generate table per hierarchy using entity framework 5 model first
I'm using Visual Studio 2012 with entity Framework 5 model first.
I would like to generate my database using a table per hierarchy strategy, but can't find that option.
The Entity Designer Database ...
0
votes
1answer
523 views
Add documentation to generated code in entity framework model first
I have been using Entity Framework model first since VS 2010. When I build my project, EF generates a Model.Designer.cs file containing all entities. This designer file also contains the documentation ...
1
vote
1answer
959 views
The entity type <class> is not part of the model for the current context
This is a MODEL first approach. I have already researched this extensiely and have not come up with an answer. I have tried all the suggestions at the following links:
This appears to be the same ...
0
votes
1answer
26 views
How to set a field as indexed in Entity Framework Model-First designer
This has been asked a lot in the past, and I know that there was no direct support for setting a field as indexed in the EDMX designer, but since Visual Studio 2012 is out and Entity Framework 5 is ...
1
vote
0answers
49 views
Change the state of a relation in Entity Framework
My question is directly in relation to this one.
The accepted answer says "You also have to change state of the relation".
I use Model-First approach, and I don't have the foreign key in my entity. ...
0
votes
1answer
269 views
Code First code generation trying to create the model?
Moving to Entity Framework 5, model first (due to the database being complex and being maintained separately). Importing the database, using the new DbContext code generator.
protected override ...
0
votes
2answers
1k views
EntitySet System.InvalidOperationException - “the entity type is not part of the model for the current context”
Similar Questions
The entity type <classname> is not part of the model for the current context -and- EF 4.1 Code First error - The entity type SomeType is not part of the model for the current ...
0
votes
1answer
409 views
EntityFramework Model First, Composite Primary Key From Foreign Keys
I have a Entity Framework 5 Model First project, with the following tables:
Extension
Id : Int32, PK
Number: String
User
Id: Int32, PK
Name: String
UserExtensionMap
UserId : Int32 (FK ...
0
votes
2answers
144 views
Visual Studio 2012 and EF5 Development on non-Windows 8 Machine
Am trying to create an EF5 Model First project at work.
After i created the model and clicked generate database from model, at first it wasn't creating the code behind. Looking a bit i found the Code ...
0
votes
0answers
74 views
Error using MiniProfiler(version 2.0.2.0) and MiniProfiler.EntityFramework(version 2.0.3.0) dlls with MVC3 Model First and DBContext
When using MiniProfiler(version 2.0.2.0) and MiniProfiler.EntityFramework(version 2.0.3.0) dlls with MVC3 Model First and EntityFramework(version 4.1.0.0) with DBContext. I try to initialize the ...
0
votes
1answer
56 views
Entity framework: Manually maintained mappings
I've been using EF for a while (4 with model first) and so far I've not created any mapping manually. Whenever I need more entities/tables, I add an entity and the associations (all foreign key) and ...
0
votes
1answer
196 views
DbUpdateConcurrencyException even when the passing key in delete view
I am very confused as to why this started happening as I had fixed the problem already. When this problem first occurred I did not have @Html.HiddenFor(model => model.OrganizationID) being passed ...
2
votes
2answers
477 views
Reference external type enum and contains method
Since I have switched to .net 4.5 and EF 5.0 I have started using enums mapping.
In my project I'm using model first. Because all of enums were declared earlier so I have decided to user option ...
0
votes
0answers
19 views
entity framework model update performed -autogenerated code not updated [duplicate]
Possible Duplicate:
Entity Framework 5 update model from database does not generate table class
Answer: Thanks Pawel for the link:
There is a bug in VS2012 - edmx in nested folder doesnt ...
0
votes
1answer
104 views
Create database and add to Visual Studio solution
I am creating a database with Entity Framework 4 and Visual Studio 2010.
I am fine with the first steps - I am going model first, so I successfully created the model and now there is a valid .edmx ...



