Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
4k views

EF Model First or Code First Approach?

I know this question has been asked numerous times before as I’ve read quite a few posts on the topic about the pros and cons etc but I still can’t decide which approach is right for me. I’m very new ...
13
votes
1answer
293 views

Subsonic custom mapping of objects to tables

I'm using Compact Framework 3.5 and have tentatively settled on a custom build of Subsonic 3.0 to do data access. The trouble is that I am used to developing model-first but am also interested in ...
8
votes
1answer
2k views

How to seed data (EF4) when using model first approach?

So I am learning MVC3 and EF4. I tried the codefirst method but it was too confusing for me.. I can create the classes no problem, but the hard part comes when dealing with foriegn keys and the ...
4
votes
1answer
506 views

How to do Migration when Generate database from model in Entity Framework Model First

I have an existing model and initially generated the database from this model and had populated the existing tables with some data. Now I've added a new table to the model. Is there a way to update ...
4
votes
1answer
364 views

Entity Framework 4: add index in model first design

I like the option of doing model first design with the Entity Framework (4). However, I haven't been able to find out how to add an additional index to a table besides the primary key. Is this ...
3
votes
1answer
74 views

General Entity Framework confusion

So I've run into something and was wondering if you could help me out. I am very new (this is my first project in these languages) to MS MVC 2 and Entity Framework 4.0. I've drawn up a model using ...
3
votes
2answers
896 views

How to auto-update the Modified property on a Entity in Entity Framework 4 when saving?

Im using EF4 in VS2010, POCO's and the model-first approach. My entity has the following properties: Id:Guid, Name:String, Created:DateTime, Modified:DateTime, Revision:Int32. I create my entity, ...
3
votes
2answers
445 views

Code Generation - Domain/model first (DDD)

I'm looking for a 'complete' solution for code-generation based on DDD or model first approach. Ideally, this would be a separate application or VS plugin that we could use and re-use to generate as ...
2
votes
1answer
151 views

Entity Framework Model First Navigation Properties adding invalid column names to query?

In our database, we have the following tables Tags Id (int) Name (string) IsActive (bool) TagType (string) and DocumentStyles Id (int) Name (string) StyleRules (string) IsAvailable ...
2
votes
1answer
1k views

Model First with DbContext, Fails to initialize new DataBase

I give up. I found this: http://blogs.msdn.com/b/adonet/archive/2011/03/15/ef-4-1-model-amp-database-first-walkthrough.aspx And thought, that's cool. So I quickly redesigned my model to take advantage ...
2
votes
2answers
302 views

model first, generate DB , no execute SQL option?

I have been trying to follow the few tutorials on how to create a DB using the model first approach in MVC. I have gone as far as creating Entities in the designer and trying to generate a DB from the ...
2
votes
2answers
356 views

Entity Framework Model first, dont generate db but map to existing tables

We'd like to use model first to generate clean EF models for our application but instead of having the model generate a new db schema we'd like to then manually do a table mapping within the entity to ...
2
votes
2answers
548 views

Entity Framework: Model First, Inheritance?

I have a Person table, an Employee table, and a Contractor table. All Employees are people, all Contractors are people and every Person is either an employee or a Contractor. Like so: How would I be ...
2
votes
2answers
1k views

How to run an SQL script against a MDF file?

I've created a database model with model-first method using Entity Framework 4.0. I then created an sql script using the Generate Database from Model... I've also created an SQL Server Database file ...
2
votes
1answer
102 views

If you generate a database using EF, do you also use EF to manage the database?

"Manage" as in, make changes to the tables. If yes, how does this work with multiple developers and multiple copies of the database (for development/production)?
2
votes
1answer
244 views

Entity Designer Database Generation Power Pack generates datetime and not datetime2 for ProviderManifestToken = 2008

Im having trouble with the DDL-generation from EDMX using the "Entity Designer Database Generation Power Pack" add-on. It generates datetime-columns instead on datetime2 even though ...
2
votes
3answers
380 views

Model first vs Data first in Entity Framework .NET 4

Which one should I choose for new project? Could I assume, that data-first model provides better DB performance, and model-first provides better OOP handling?
2
votes
4answers
772 views

EF4 Generate Database

I am trying my hardest to find the simplest way to create a basic "model first" entity framework example. However I am struggling with the actually generation of the database, particularly the running ...
1
vote
1answer
52 views

ASP.NET 4 - How to retrieve data with MVC3 Many to Many relationship and EF4.1 Model First?

I'm a very beginner and I want to do something really simple, I guess I missed something but I could not find the answer. I have two tables with many-to-many relationship mapped with EF4.1 public ...
1
vote
0answers
64 views

How to disable “Save entity connection settings in app.config” always

When i execute the command "Generate Database from Model..." from my EntityFramework-Model (.edmx) the CheckBox "Save entity connection settings in app.config" is always checked. But i want that it ...
1
vote
2answers
269 views

Entity Framework 4: Model First with Stored Procedures

I'm using EF 4 with model-first...I generate the database from the model. How would I be able to use stored-procedures in that scenario? They should also be auto-generated with the database..?
1
vote
1answer
712 views

Image datatype in EF 4.1 model first

We have a project which used Entity Framwork 4.0. We draw the model and then generate an SQL Compact 3.5 DB. Since we needed a large BLOB store, we created a column with the Image data type (since ...
1
vote
1answer
72 views

Is it possible to generate a different column name for a property when generating SQL schema from the .edmx file?

I've "inherited" an EF 4.0 .edmx file. Currently a given property name and column name are identical in the generated C# and SQL schema. I've since upgraded to EF 4.1, and changed the code generation ...
1
vote
1answer
635 views

DbContext fails to initialize Model-first database

Update: It turns out I had (hidden away in my POCO objects) a property with an abstract type. Removing this property solves the issue. I'm trying to have a model-first scenario with entity ...
1
vote
2answers
122 views

'Add Foreign Key Property to..' checkbox disabled for 0..1 to 1 relationships

On the model-first approach in the designer, if I create a relationship where the cardinality on one end of the relationship is '0..1' and '1' on the other, the designer disables the 'Add Foreign Key ...
1
vote
2answers
727 views

how can I add table prefixes to tables created using model first in EF4?

My client has a db table naming convention that requires me to prefix all tables with an application specific prefix - like "myapp_" - I am using EF4 with the model first approach. I can specify a ...
0
votes
1answer
21 views

Entity Framework - Model First, Many-to-Many Mapping

In a database I have two tables User and Organization as well as a bridging table Users_Orgs. The Users_Orgs table has a composite key comprising of two columns userId and organizationId. When I use ...
0
votes
1answer
73 views

LINQ generates incorrect SQL (reference to a non-existent table)

MVC3 project, using LINQ to Entity, and Entity Framework 4 Code-First. In another post ( Return products which belong to all tags in a list using LINQ ), I received assistance in creating a LINQ ...
0
votes
1answer
34 views

Entity Framework Model First: how to create association with properties

I am trying to create data model for a graph with Node and Edge. If Edge does not contain any property I can simply create many-to-many association from a Node to itself. However I want to store some ...
0
votes
2answers
137 views

MVC 3 Model First: Update Database from Model (when model changed)?

I'm developing an application (for my education, not commercial) using MVC3 and Model First approach. I created a model and generated the SQL CE 4 database from it. Next, I may need to change my ...
0
votes
2answers
78 views

how to create cascading ddl's using entity framework model first using MVC3?

I'm new to MVC-entity framework, my model is an entity framework model and I have a commerces table which has a relation with a Province Table which has a relation with Country table. so, when I'm ...
0
votes
2answers
230 views

How to call Database.SetInitializer on model-first?

I created a model in the edm designer (VS10) using "DbContext Entity Generator" as the generation item. In the generated DbContext subclass, it overrode the constructor so I can't use it in the other ...
0
votes
3answers
56 views

Entity framework model first approach removes all table data

I am studing model first approach in Entity Framework. I found all data gets wiped out whenever a re-generation of the database from the model occurs. Is model-first really a useful approach or is ...
0
votes
0answers
32 views

When using model-first database generation in entity framework 4, how do we know which tables should contain foreign keys?

I have two objects that I've created in VS 2010 using the graphical model editor for the edmx file. The simplified descriptions are as follows: PLAN Name (string) InitialDescription (association) ...
0
votes
0answers
33 views

Disabling referential integrity for an association in a Entity Framework model

I want to relate two entities (Message and Event) in my model without generating a foreign key constraint for my database. The relationship is * to 0..1 Events to Messages.I thus have a MessageId ...
0
votes
1answer
113 views

Entity Framework + SQL Azure: best practices for database changes

I'm designing a database that it's not totally defined yet, and as the project goes, it won't be defined very soon. However, the project will be online very soon, and database will be changing online. ...
0
votes
1answer
82 views

Changing naming of generated files in T4

Is there anyway that I can change the naming of the files generated by T4 with Entity Framework Model First I have tried to change the output extension to this: <#@ output ...
0
votes
1answer
146 views

Entity Framework 4.0 Model First inheritance is lost after updating model from database

In my application I'm using Entity Framework 4.0 Model First. I have several tables that implement inheritance, like Product as a basetable and SpecificProduct that inherits from Product. The ...
0
votes
1answer
131 views

MVC3 Decimal Type Losing All Precision When Adding Via EF4.1 NavigationProperty, Possible Framework Bug?

I've created a sample project which you can download here. Steps to recreate manually: Create new MVC3 web project. Add a .edmx Create an Entity named 'Account.' Create an Entity named ...
0
votes
1answer
83 views

EF Generate Database from Model Deletes Function Imports

Ok I've seen this question Entity Framework: Generate Database From Model removes Stored Procedures from Model Store but I don't think this is solved. I have some function which I need to run at SQL ...
0
votes
1answer
227 views

How to create database from “Model first” model?

I have been trying to follow the few tutorials on how to create a DB using the model first approach in MVC. I have gone as far as creating Entities in the designer and trying to generate a DB from the ...
0
votes
1answer
370 views

Using DataAnnotations and attriutes in Model First development

I have been developing my Models "model-first" by using the EDMX designer. I'm rather fond of it, but wondering how I can use this process to apply attributes, specifically DataAnnotations, to my ...
0
votes
1answer
146 views

what's faster ef codefirst 4.1 or model 4.0

Are there any performance benefits in either of the methods?
0
votes
2answers
331 views

Model-First database generator freezes my Visual Studio

I'm new to the Entity Framework, and I know this is not suppose to happen, but maybe it is a known issue in the community so I thought I'd ask. I created my model with 2 entities. When I wanted to ...
0
votes
1answer
435 views

Entity Framework 4 with SQL Server Express files

I know that if you use EF in a model-first manner in VS2010 with a standard SQL Server database then it is easy to apply the generated DDL to the database. Is there an easy way to do this with .mdf ...
0
votes
1answer
318 views

Map a column to be IDENTITY in db with EF4 Code-Only

Although I have marked my ID column with .Identity(), the generated database schema doesn't have IDENTITY set to true, which gives me problems when I'm adding records. If I manually edit the database ...