EF Code-First is a way of using Microsoft's Entity Framework with POCO classes, as opposed to model-first or DB-first.
0
votes
2answers
46 views
How do I get the corresponding POCO object Type from an Entity Framework Metadata EntityType object?
I have annotated my Entity Framework Code First objects with some extra metadata, such as the DataTypeAttribute or possibly new, custom attributes. A version of this code (from ...
2
votes
0answers
36 views
Entity Framework Code First: SaveChanges is not atomic
I have the following very simple unit test that reproduces a case where DbContext.SaveChanges is not atomic.
By not atomic I mean that the committed data can be read before all the commit was ...
0
votes
1answer
12 views
Select List of Poco classes for specific entityState
I've got a piece of software that is adding entries to a context.
using the changetracker I want to generate a List of Poco classes for reporting purposes.
Like this:
List<customRecord> ...
4
votes
2answers
50 views
C# EF Code First Deploy to Godaddy
I am having issues deploying my app to godaddy hosting using EF code first. I dont want my app to create the database since the database already exists.
So I read some posts on here and placed this ...
0
votes
1answer
38 views
Entity splitting with optional relation - (EF code first)
I have 2 tables: an Orders table and an OrderActivity table. If no activity has been taken on an order, there will be no record in the OrderActivity table. I currently have the OrderActivity table ...
4
votes
2answers
70 views
How do I join with OR condition?
This is my LINQ code:
from b in dbContext.SAPBillOfMaterials
from t in dbContext.AUXComponentTypes
where t.ParentId == b.Parent.Id &&
t.MaterialType == b.Component.MaterialType &&
...
1
vote
1answer
47 views
Code First load nested without recursion
I have a Sheet that can contain many Sections. Each Section can also contain many Sections. I would like to load the Sheet, its Sections, and all of the sub Sections with as few round trips to the ...
0
votes
1answer
16 views
Error while trying to update the database on a migration?
I'm following through an example on a mvc course on pluralsight. I'm getting an error when trying to do a database migration.
Here is my class:
public class Department
{
public virtual int Id ...
0
votes
2answers
34 views
EF 4.1 code first - How to update/delete many to many join table entries automatically
I have 2 entities, let's say, Trip and Activity. The relationship between them is many to many so a join table is created automatically by EF.
Entity Trip attributes:
-Id (PK) Generated by database
...
-1
votes
2answers
23 views
Get geo-locations from cities
I am trying to display a list of closest restaurants of a given city within a radius. In order to do this, I'll have to convert the city to a longitude/latitude.
When the user fills in his/her ...
1
vote
1answer
38 views
Mapping MVC3 model to MSSQL 2008 View using code first and database first
In SQL Server 2008 I have a view like this:
CREATE VIEW products AS
SELECT a.ID, a.Name, b.ID as SubID, b.Name as SubName
FROM main_product as a
INNER JOIN sub_product as b on a.ID = ...
0
votes
0answers
24 views
Primary key on subentity
I want to model the following with EF code first.
Imagine a car race, where multiple car classes compete in their own races.
A SubEvent is only for one CarClass, so each SubEvent is unique with it's ...
0
votes
1answer
27 views
EF 4.1 Code first - Many to Many - State unchanged
I have a many to many relationship, see my scenario explained here before continuing reading:
EF 4.1 Code First: Many to Many
Ok, now I can add the entries to the respective tables by doing the ...
1
vote
1answer
45 views
code first with diffrent entities
i have three model classes and three views , model is given below
public class BASLPApplicationFormModel
{
[Key]
...
0
votes
1answer
27 views
Unique fields in table Fluent Api / Code First
I have been looking for a way to make, for example a username unique in the database with Fluent API / Code First. Is this even possible via either of these routes?
Because I can't find any tutorial ...
0
votes
1answer
25 views
Entity Framework Code First and WebMatrix membership
I started a new project with EntityFramework 5.0 Code First with Automatic Migration and MVC4 with Simple Membership.
And I modified the Configuration.cs with the following:
protected ...
0
votes
1answer
33 views
EF 5 Code first Entities FirstOrDefault method returns null
This is an example based on Programming Code First EF.
Please look at the below classes. When the PersonRepository calls in instantiated and InsertOrUpdate method is called Null value is returned. As ...
0
votes
2answers
23 views
Unique index with fluent api
I got a table Person, Order and PersonOrder.
In the table PersonOrder i have a column PersonId and OrderId.
How can I create a unique index between these columns with Fluent API?
This was my try:
...
1
vote
2answers
52 views
EF 4.1 Code First: Many to Many
I have 2 entities, let's say A and B. Relation between them is many-to-many so I have another entity, let's say C.
Columns for table A:
-Id (PK) -> Type int generated by database
-PropertyA1
...
0
votes
1answer
28 views
EF5, code first exception ONLY on first database access: “FK_x…x' is not a constraint. Could not drop constraint”
This has been driving me crazy for days. I am using vs2012, EF5 code first, sql server 2012. This is on my development machine and I get the below exception when, and ONLY when, I hit the database ...
1
vote
0answers
31 views
Update optional FK to Required with Automatic Migrations
I have a table which has an optional FK to another table and want to change that FK to a required relationship.
I have Automatic Migrations enabled and enabled destructive changes for this update. ...
0
votes
1answer
16 views
MVC 4 Add Controller Error Unable to retrieve metadata for my Model
I recently added a MVC4 Web Application to my solution and gave it a reference to my Common class library. The Common class library contains the models and context (EF Code First).
When attempting to ...
1
vote
1answer
74 views
EF Code First one to one relationship
I have the following situation:
public class User
{
public int ID { get; set; }
public string Name { get; set; }
// ...
public virtual Address Address { get; set; }
}
public class ...
0
votes
1answer
22 views
Validation failed for one or more entities. See 'EntityValidationErrors' property for more details. Code First
I get this error:
Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
when i try to update the database with the Update-Database command in the ...
0
votes
1answer
20 views
Adding fields to webpages_Membership SimpleMembershipProvider
Is it possible to add fields/columns to webpages_Membership?
[Table("webpages_Membership")]
public class Membership
{
public Membership()
{
Roles = new List<Role>();
OAuthMemberships = ...
2
votes
2answers
98 views
Navigation properties and cascade on delete
I am using EF5 fluent-api to try to set up relationships/constraints between several tables, and I want these relationships to include cascade on delete and I think I'm missing something simple ...
0
votes
1answer
18 views
How to add a table that has a key off of the roles table in the SimpleMembership setup?
I have a web app setup with Simple Membership and Entity Framework Code first Migrations. I would like to create a POCO class that has a many-to-many relationship with the webpages_roles table in the ...
0
votes
1answer
43 views
Seeding data in Configuration.cs, creating duplicate data with AddOrUpdate
I am using Migrations in an MVC 4 EF5 application in Visual Studio 2012 Express with SQL Server 2012 Express, using Code First.
I use the Seed method in configuration.cs, firstly creating a Tags ...
0
votes
2answers
44 views
Initializing/Adding fixed entries on table creation
I am using Entity Framework code first, and I have two tables that need to be initialized with fixed entries just on table creation. For example:
Columns for table A:
-Id
-Name
Columns for table ...
1
vote
1answer
93 views
Linq Include helper function for f# style pipelining
I want to eagerly load some records from and their relations from the database something like this:
let getEmails() =
let emails =
(query { for q in entities.QueueItems do
...
0
votes
0answers
48 views
Custom foreign key relationship using Fluent API
I am working on a project using VS 2012 and EF 5.0.
I am having two tables:
public class AttendanceRecord
{
public int Id { get; set; }
public DateTime RecordedDate { get; set; }
...
0
votes
1answer
23 views
EF5 - Itterate through the column name with OnModelCreating
I'm using EF5 and I want to camelCase my column names.
I want to do something like this in my OnModelCreating(DbModelBuilder modelBuilder) method ...
foreach(var prop in ...
0
votes
0answers
19 views
EF Code First Get FK related Values without Entity
I have following Vehicle entity
class Vehicle
{
public int Id {get; set;}
public string PlatNo {get; set;}
public int VehicleTypeId {get; set;}
}
VehicleTypeId property is a FK of ...
0
votes
0answers
11 views
Add-Migration error: Schema specified is not valid
I can not create a new migration Add-Migration Testing
Package version
Microsoft.AspNet.WebApi -> 5.0.0-beta1-130515
Microsoft.AspNet.WebApi.Client -> 5.0.0-beta1-130515
...
1
vote
1answer
47 views
EF5 code first with ASP.NET Web API: Update entity with many-to-many relationship
I'm trying to update a Customer in my database using ASP.NET Web API and Entity Framework 5 code-first, but it's not working. My entities look like this:
public class CustomerModel
{
public int ...
0
votes
0answers
15 views
Code First Many-Many Error (may cause cycles or multiple cascade paths)
I have looked at so many questions and tried every solution available but it seems not to work with my specific scenario. I am trying to add a code-first many to many relationship for the below ...
-1
votes
1answer
27 views
Entity Frame work Coded first - Create Readonly EDMX Model
I am just starting out with EF Code-first:
If I create a read-only EDMX file from my code first can I save this readonly file as a stand-alone file and then include the resultant file in my project ...
0
votes
1answer
20 views
EF 5 - Get Migrations Scaffold to live in a seperate project
I don't particularly want the Entity Framework migrations scaffold code in my Data Access project. I've got a Console app that I manage database scripts with - so I'd like it live in here:
...
0
votes
1answer
23 views
EF Pre-generated views and multiple Contexts
In our environment we have more 200 tables and we are using EF 5.0 Code First to manage the database. Our software allows the users to modify the Entities and add Custom Fields to them.
Out of 200 ...
0
votes
0answers
36 views
EF should relation properties be virtual? [duplicate]
I see some people who put the relation properties virtual and some other not. Could someone explain the difference?
[Table("Prospects")]
public class Prospect
{
[Key]
public int ID { get; ...
0
votes
0answers
9 views
Invalid column name on OData result from inheritance type
Code
Model
I have a base and a specific class
public class Entidade : EntityNome, IAuditavel
{
public DateTime CriadoAs { get; set; }
public virtual Usuario CriadoPor { get; set; }
...
0
votes
1answer
31 views
EntityFramework CodeFirst Mapping to have camel case in the database
I've just started a new company who are happy for me to use CodeFirst - but want the database fields camel cased.
I'm currently writing a lot of this kind of stuff ...
[Column("active")]
...
0
votes
2answers
46 views
One to many navigation property is null in code first EF5
What is the proper way of defining related collections in code first Entity Framework 5?
I was following this summary but something is not working.
I have the following model:
class Order
{
public ...
2
votes
2answers
24 views
Change table schema on middle table generated by Entity Framework
I have got model with M:N relation like this:
[Table("Messages", Schema = "public")]
public class Message
{
public int Id { get; set; }
public virtual IList<Phone> Phones{ get; set; }
...
0
votes
3answers
51 views
Where to put Seed data using EF5 code-first migrations
I'm starting out with EF and MVC, and following different tutorials provide different confusing ideas on where is the correct place to put dummy test data in my database.
So I've made some POCO ...
0
votes
1answer
71 views
Custom simple membership provider adding row
I have a custom SimpleMembershipProvider and i have defined all tables that the SimpleMembershipProvider requires, like webpages_Membership:
[Table("webpages_Membership")]
public class Membership
{
...
0
votes
3answers
44 views
Designing classes in code first Entity Framework
I am building a online shopping web application.
I have four entities :
Customers
CusomerId
Name
Address
Phone
Category
CategoryId
Category
Product
ProductId
Name
Price
Category
Order
...
0
votes
1answer
18 views
Which method in EF5 is in charge of creating database
I have a couple of questions:
In EF5 code first API which method is in charge of checks if database exits, and if it's not the case which method creates DataBase?
if i use EF code first i my DAL ...
1
vote
2answers
63 views
Database initialization strategy Code First
I have an ASP.NET-MVC application with Migration enabled and SimpleMemberShipProvider configured to use my database with some extra tables/fields.
My question is, where to put my database ...
-3
votes
1answer
44 views
When we use Entity Framework, how to use triggers?
When we use Entity Framework, how do we use triggers?
When I call .SaveChanges(), the following error occurs
An error occurred while updating the entries. See the inner exception for details.
...




