Code First enables you to: Develop without ever having to open a designer or define an XML mapping file Define model objects by simply writing “plain old classes” with no base classes required Use a “convention over configuration” approach that enables database persistence without explicitly ...
8
votes
1answer
1k views
EF Codefirst validate unique property?
Curious about how to efficiently validate that a given property of a CodeFirst model is unique. Classic example being a member's username or display name.
Traditionally I might do this by setting a ...
6
votes
1answer
120 views
Code first causing required relation to be optional?
public class Client
{
public Int32 ClientID { get; set; }
public virtual ICollection<Inquiry> InquiryManufacturers { get; set; }
public virtual ICollection<Product> Products { ...
5
votes
1answer
313 views
Create code first, many to many, with additional fields in association table
I have this scenario:
public class Member
{
public int MemberID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public virtual ...
4
votes
2answers
194 views
mvc mini profiler problem
I'm trying to get the mini profiler working with code first and am having a problem. I've got the miniprofiler and miniprofiler.ef packages from nuget and have added the
MiniProfilerEF.Initialize();
...
4
votes
1answer
639 views
EF Code First: IValidatable Object not validating
I have an object in a simple test scenario that uses EF Code First and implements IValidatableObject. There's some very simple logic that adds a validation error and returns it back. There are also ...
4
votes
2answers
1k views
IDbSet and Exposing Include method via Extension Method
I am using the Code-First approach with EF and I wanted to use IDbSet instead of DbSet so I could do Unit Testing with mocks. My problem is I use the Include() method for eager loading where necessary ...
3
votes
1answer
248 views
EF code first inserting many rows
I'm using EF code first and I need to insert many rows into a table, a couple of thousand records, I have in a generic list. Just doing a foreach loop and adding each entity to the table and finish ...
3
votes
2answers
410 views
EF4 CodeFirst CTP5 nvarchar(max) via attribute
Is there a way to create a custom attribute that will make EF CodeFirst use nvarchar(max) as datatype when assigned to a property of a poco class? I know this is possible via fluent api, but we would ...
2
votes
1answer
57 views
Few questions… ModelState.IsValid and Grouped CheckBox Values
Using ASP.NET MVC when I create my model, then a controller based on the model with CRUD operations, the CRUD views are generated. I added some code using Fluent API to require certain fields but for ...
2
votes
1answer
114 views
Creat dynamic list of children at time of parent creation in asp.net MVC3 EF4.1
My objective is to allow the user to add goals(children) to a review(parent) while creating and/or editing a review. I have this mostly working so I'm looking for answers to two questions A. How can I ...
2
votes
4answers
2k views
First try StructureMap and MVC3 via NuGet
I'm trying to figure how to config StructureMap for ASP.NET MVC3 I've already using NuGet and I notice that it creates App_Start Folder with a cs file named as StructuremapMVC, so I check it and ...
2
votes
2answers
94 views
Are there tools that implement the Code First mantra for existing schemas?
I really like the Entity Framework Code First idea because I can rapidly prototype new projects, but right now I'm dealing with a database that already exists.
We have many databases with the same ...
2
votes
1answer
288 views
code first CTP5 error message
I get the following error message with a new project I have set using code first CTP5. Can't find anything on the web about it. Has anyone encountered this error message?
The context cannot be used ...
1
vote
2answers
22 views
Added code-first entity doesn't lazy-load properties
I have a problem where a property of a newly added entity is not lazy-loaded, if required immediately after adding the entity.
For example:
I have a User entity with a virtual JobRole property:
...
1
vote
2answers
81 views
How to work around EF 4.1, CodeFirst C# DateTime datetime2 vs. datetime incompatibility
My codefirst models have System.DateTime properties. When the database seeding code is invoked, it throws this exception: SqlException (0x80131904): The conversion of a datetime2 data type to a ...
1
vote
2answers
42 views
Can WCF Code First DataServices return a NotMapped property?
I'm using WCF Data Services for a RESTful API that returns a JSON response.
consider this object:
[Table("person")]
public class Person
{
[Column("dob", TypeName = "datetime")]
public ...
1
vote
1answer
50 views
Why do I get: Unable to determine principle end of … error with the following code
currently tweaking the model on a project I'm working on and I've hit a wall and can't seem to spot why I'm getting an error.
I have two class's
public class CorePage : BaseClass
{
public ...
1
vote
2answers
89 views
With Entity Framework code-first, how to Insert object with existing property
Here is the simple case.
I have a Customer record defined like this:
public class Customer
{
[Key]
public string Id { get;}
public UsState UsState { get; set; }
}
public ...
1
vote
1answer
64 views
Saving object with child objects from different context
I'm currently working on an app using EF 4.1 Code First and have a question about how to save a new object with child objects from another context. The Context is stored in request mode.
I create a ...
1
vote
3answers
419 views
EF 4.1, Code First: The store generated pattern 'Computed' is not supported for properties that are not of type 'timestamp' or 'rowversion'
everyone.
I'm trying to add an optimistic concurrency in my entities. There's a property defined in the entity class:
public byte[] ObjectVersion
{
// ...
}
Here's configuration of this ...
1
vote
1answer
209 views
EF 4.1 code first: how to refer to child records from parent in a one-to-many relationship
I have a simple 1:many aggregate relationship, lets say:
public class Parent
{
public string Name {get; set;}
public Child SelectedChild {get; set;}
public Child PublishedChild {get; ...
1
vote
1answer
145 views
Updating a reference to a child object in Entity framework 4.1 (CodeFirst)
I'm trying to update an object that I have previously saved with EntityFramework 4.1 (CodeFirst)
The class Job has the following properties ...
public class Job
{
[key]
public int Id { get; ...
1
vote
1answer
77 views
Adding columns to DB after publishing using EF CodeF and mvc nugget Scaffold
I have created a web site using mvc 3 and Ef code first , now after publishing the site and it's DB I have found out that I need to add a new columns to one of my DB table,
(the DB already has a lot ...
1
vote
1answer
100 views
EF Codefirst, One class, multiple tables with discriminator
I doing a little investigation and I am wondering if the following is possible.
I am looking to create a BaseEntityWithDetails class that I can reuse for any type that I would like to have ...
1
vote
1answer
143 views
unable to query EntityFramework shared dbcontext reliably
I'm trying to share a simple DbContext with 4 DbSets among multiple repositories, each of my repositories inherit from this base class
public class CodeFirstRepository : IDisposable
{
...
1
vote
0answers
171 views
EF Codefirst fails to work with partial tables of northwind database
I could not work with employee table of Northwind database alone.
below code throws error as
"Unable to determine composite primary key ordering for type
'Northwind.Order_Detail'. Use the ...
1
vote
1answer
191 views
Dependency injection in entity classes with code first
I'm trying to figure out a way to handle dependency injection in entity framework code first.
I stumbled upon an article that uses ObjectStateManager though I don't think it's available in code ...
1
vote
1answer
180 views
Using base class for object creates problems for EF4.1 POCO
On a new project I'd like to use the "Code First" feature of Entity Framework to set up my data store.
In my project I may have multiple types of People (a ticket holder, a traveller, a selling ...
1
vote
2answers
220 views
Problem deleting a one-to-many relationship using CodeFirst CTP5
I'm working with CodeFirst CTP5.
As you can see in my code I have a User with many Questions. I want to be able to delete the User but keeping the Question. In addition, I also want to keep the ...
1
vote
1answer
134 views
EF code first uncertainty principle - referred entities may not get loaded
With automatic database recreation, it is uncertain whether referred entities will get loaded or not.
The context is EF CTP 5 and ASP.NET MVC 2. In the global.asax a database initializer is set that ...
1
vote
1answer
206 views
Is EF Code First w/SQLCE 4 bin deployable?
I am planning to create a MVC page that will use EF CodeFirst and SQLCE 4.0. Are this technologies bin deployable/ shared hosted friendly?
I am currently using GoDaddy with .Net4
1
vote
1answer
1k views
How do I outer join multiple tables using linq to entities
I'm using ASP.NET MVC 3 with Entity Framework CodeFirst
I have two classes as follows:
Question:
public class Question
{
public int ID { get; set; }
public Target Target { get; set; }
...
0
votes
1answer
28 views
Issues with Entity Framework Concurrency Token DataTime type
I have an issue with concurrency token of DateTime. Here's a simple way to reproduce the problem. Have one entity:
public class Employee
{
public int EmployeeID { get; set; }
public string ...
0
votes
1answer
38 views
Entity Framework Code First - Single entity map to multiple tables without common key
I am facing an issue regarding EF code first version while mapping one entity to multiple tables in existing database.
Table1: (primaryKey is IdDocument)
----------------------------
IdDocument | ...
0
votes
0answers
23 views
Custom model binder and object context
Using MVC 3 and Entity Framework code first here and looking for a solution to the following problem:
I have a custom model binder that binds DB objects on post-back:
public object ...
0
votes
1answer
13 views
Code First: Query by Discriminator. I know, I'm not supposed to need to
I have created TPH code-first tmodel and added the NotMappedAttribute on the required discriminator column. I can add DbSets to my context for the subclasses and query by these typed sets and ...
0
votes
0answers
46 views
EF Code First exception / configuration
This is the first time I am using code first, so please bear with me:
I have the following entities:
class Company
{
Guid Id
string Name
virtual List<Employee> Employees
}
class ...
0
votes
1answer
58 views
EF code first Query madness with include.select
I have a big fight with linq
I have a webpage and a zonecontent entity
in my webpage repository i have a method called: GetPageByTitle
here i want to select the page by title and return it.
i try ...
0
votes
0answers
12 views
.NET Entity Framework. How to do One to One relationship with several join tables in between in existing database using Fluent API
With a legacy database (and strict orders not to modify it) and using Entity framework I have the following:
MODELS
public class EntityObjectA
{
public Guid Id { get; set; }
public string ...
0
votes
2answers
73 views
EF Code First not working on deploy hosting
I've an application using MVC and Code First for persistence.
Everything works fine in my development, but when I'm uploading to server, it doesnt work.
In any place i try to create a database, but ...
0
votes
1answer
38 views
EF CodeFirst: Rails-style created and modified columns
Using Entity Framework CodeFirst, how do I create a created datetime column that gets populated with the current timestamp everytime a record is inserted for that table, and a modified datetime column ...
0
votes
1answer
104 views
EF Code First ignore Property to Field Convention?
Is there a way to then ignore the conventions completely, so that Code First doesn't try to map any properties to database fields at all automatically, and I just define my own mapping completely ...
0
votes
1answer
91 views
Entity Framework 4.1, Table Per Type Inheritance
Could someone suggest a workaround for a C# limitation? I need for two different types to both derive from the same base type. In my example, Employees and Users are People. An Employee can also be ...
0
votes
0answers
56 views
EF 4.1 Code First Map Class with Generic list to Flat Table
I have a legacy database. We are thinking about implementing EF, and an OOP class structure. How would I map something like below using Code First?
This is my class definition:
public class Customer
...
0
votes
1answer
236 views
VB.NET Sample Entity Framework 4.2 Code First Entity Splitting
Entity Splitting: one class, two or more tables.
Here is how it is done in C#, but I need to get it working in vb.net.
One more thing: the class name and table columns do not match, so I have to be ...
0
votes
2answers
74 views
EF code first List<DateTime> not creating table
I am creating a very simple EF4 code first project with one entity.
public class Activity
{
public Guid Id { get; set; }
public string Description { get; set; }
public ...
0
votes
0answers
123 views
add-migration does not function with remote sql server databases in shared hosting
It looks like CodeFirst stops doing its homework when it doesn't have full control of the database (I suppose).
The scenario is a web site hosted on Arvixe.com (or I suppose any other shared hosting ...
0
votes
2answers
35 views
Mapping FK relationships in EF codefirst
Let's say i have 2 tables like:
Table:User
-------------
- UserId [pk]
- UserName
- StatusId [fk]
Table: Status
-------------
- StatusId [pk]
- StatusDescription
Now let's say i want to show the ...
0
votes
1answer
277 views
EF Code-First - Storing IEnumerable Of Enum
I'm using EF June CTP which has simple enum support. I have a MVC 3 view which has checkboxes that when submitted are retrieved as an array of some enum.
public enum CheckBox : byte
{
VALUE_1 = 1,
...
0
votes
1answer
93 views
Modifying One to Many relationships - Code First
I thought the following task would be seemingly easy to code, but I have spent a lot of time and not yet figured out the right way to solve it. Here is the scenario
I have three Entities City, ...