0
votes
2answers
57 views

Is it a bad idea that every entity inherits from one base entity?

Would it be there a problem (or maybe its a bad idea), if I make every class inherit from a base class which provides his key/id? This in a codefirst design in Entity Framework class MyObject { [Key] ...
-1
votes
1answer
62 views

Fluent API, define a primary key as foreign key

I have this two models : //Primary AND Foreign key 1 public int UserID {get; set;} //Primary AND Foreign key 2 public int ProductID {get; set;} I don't know how to set this two column as primary ...
0
votes
0answers
63 views

Delete entity with FK

I want to delete entity with FK. This is my code: var db = new DeresyDBEntities(); var item=db.Items.Where(p => p.ID == ItemId).SingleOrDefault(); if(item!=null) { foreach (var tag in ...
0
votes
0answers
93 views

How to save changes/add new objects to related entities Entity Framework

I have two tables that are related in SQL: MasterPartNumbers MasterPartsLists (pk) pn (one-> many) (fk) pn desc parentAssemblyPn ...
0
votes
3answers
410 views

Entity Framework Get Entity By Primary Key

Some time ago, I wanted to implement a method that was able to determine whether do an insert or an update on a given entity, so I didn't have to expose "Insert" and "Update" methods, but just a ...
1
vote
4answers
119 views

Is there something like primary key and secondary key?

I have something like this: public class something { [Key] public int Id {get;set;} public string Name {get;set;} } public class secondsomething { [Key] public int Id {get;set;} ...
0
votes
1answer
170 views

How To Set a Primary Key On a View Using ROW_NUMBER()?

I use SQL Server 2008 and Entity Framework for an app I work on. I've set primary keys on all tables in SQL Server, since EF requires it, but I have a problem with one view. Since it doesn't have ...
1
vote
2answers
65 views

EF not recognizing PK of view in Oracle

I am using Oracle as the DB, VS2012, and EF 5.0. I know the table has a PK (Composite Key) and I create a view with create view v_table_name as select * from table_name When I try to add the view ...
-5
votes
1answer
292 views

Entity Framework 5 Violation of Primary Key on INSERT [closed]

While there are several entries here on this issue, I found a new solution. Since it ate two days of my project schedule, I would like to think it can somehow benefit others. The problem is that, on ...
3
votes
2answers
243 views

Primary key violation with new duplicate objects

I'm using Entity Framework 5 with a code first approach. I have two classes that have a many-to-many relationship to each other, Movie and Person. A Movie is related to a Person via a Character. Each ...
0
votes
0answers
19 views

Entity framework with a 3rd party database which doesn't have keys(!?)

I'm working with a 3rd party database which exposes views for me to work with. The views have no primary keys and are not indexed in any way ("not supported because it's built upon a legacy system"), ...
0
votes
1answer
44 views

Auto initializing PK in Entity framework

I am using Entity framework and would like to have a constructor in each of my entities that initializes the PK property to Guid.NewGuid(). I was wondering if there was a way to have this done ...
1
vote
0answers
122 views

Entity Framework constraint naming in database

I have a problem with the naming of some primary keys in the database. On my development system the primary key constraints are named PK_FullTableName. Now on a production system the constraints are ...
1
vote
1answer
261 views

Force primary key on a view

I have the schema below : I tried to create a view and did everything to get IDStore_CardStore column NOT NULL in order to make it as the primary key in me EF entity but no success: My aim is to ...
1
vote
0answers
233 views

Entity Framework: no Primary key/can't execute Stored Procedures

I have a database with Stored procedures, and i used Ado.Net Entity Data Modell and Ado.Net DBContext generator. After this part i've got error: "no primery key". I modify in .edmx file in entityset ...
0
votes
1answer
337 views

Getting message “Store update, insert, or delete statement affected an unexpected number of rows (0)” ?

Another big problem, here. I have the model: public class Lead { [System.ComponentModel.DataAnnotations.Column("le_codlead")] public int LeadID {get; set; } ...
0
votes
2answers
2k views

Represent View Without Key in Entity Framework

I'm using a model produced with Devart Entity Developer (.edml file, which I understand is mostly similar to .edmx) to generate Entity classes whose relations are initialized in a DbContext class. ...
1
vote
1answer
621 views

Entity Framework: create entity and insert data in table without primary key

There are couple similar questions and answers are like: Better add a primary key... The question is: Is it possible to insert data in table without primary key using entity framework? Or I have to ...
0
votes
1answer
277 views

Make two columns primary key in view

In SQL Server Management Studio you can edit a table in the Designer, select two columns, right click and make them a primary key. Is there a possibility to do this for a view too? Normally when I ...
3
votes
2answers
182 views

EF entity without a public key

I want to create an entity in EF without a public key. The backing table has got a non-unique clustered key, but the data in the table conceptually doesn't have a unique primary key it can use. It ...
0
votes
1answer
124 views

Multiple linked 1-1 relations don't sync PKs as expected

I tried searching the SO, but all results I've found seem to deal with updating PK of entities that have already been persisted to the DB. My case is different. I have 3 tables in a database with ...
0
votes
1answer
73 views

How to decide a Primary Key from an Entity Collection programmatically

I'm encountering some problems importing my DB on Entity Framework. Some relationship between tables returns me some other entities without any primary key.. For my application I need to have a PK for ...
0
votes
1answer
89 views

SQL - Does not have a PK Key ERROR

Got an Excel file that contains nearly 10k rows. I transferred it with a Codeplex Guide and created a new DB with a table that contains all data. When I use: SELECT * FROM RenewDatabase It ...
0
votes
1answer
122 views

How do you signify a primary key in EF Code First?

I am new to EF Code First. How do you go about representing that a variable in an object should be the primary key when it is peristed to a database table?
2
votes
2answers
2k views

Can't add tables in Entity Model without Primary key

I have a problem in using Entity data model. I'm unable to add a table in entity model that has no primary key. The same situation is with the table that has composite key.
1
vote
2answers
151 views

How to design my ingredient database tables?

I'm working on an recipe module (ASP.NET MVC, entity framework, sql server), and one of the entities I have to setup in the database are ingredients, their characteristics and translations to a number ...
1
vote
1answer
82 views

How to insert ID in EF 4.1

I am trying something with EF 4.1 that should be relatively easy. I have a class like this class Entity { public int Id {get;set;} public string Name {get;set;} } The Id property should be ...
1
vote
4answers
630 views

Entity Framework 4.1 - Database First approach - How to find column names for primary key fields?

I'm using EF4.1 for DAL for an application, and I use DbContext template generator with POCP entities. The model is created from the database, so all the fields / PK's / FK's / relations are already ...
0
votes
3answers
1k views

EF4.1 DBContext: Insert/update in one Save() function without identity PK

I have a streets table, which has a combo of two string columns acting as the PK, being postalcode and streetcode. With EF4.1 and DBContext, I'd like to write a single "Save" method than takes a ...
2
votes
2answers
3k views

Adding Item with Many-to-Many Relationship In Entity Framework

I am getting a primary key violation error when I attempt to add an item with a many-to-many relationship: I have two classes - Articles and Tags which have a many-to-many relationship : public ...
0
votes
1answer
205 views

Defining primary key as virtual in Entity Framework

What's the benefit of defining the primary key attribute as virtual in entity Framework? AFAIK, virtual is used for lazy loading in navigation properties and for change tracking in other ...
0
votes
1answer
2k views

Entity Framework Compound Key (Many-To-Many Relationship with a Payload)

I've got database tables like this: A person may be a member of many teams. A team may have many members. Each person may have a position (think job title) within the team. I've tried to set this ...
3
votes
1answer
1k views

EF4.1 Code First Complex Type as primary key

I'm currently trying to implement the repositories for my domain objects with the RC of Entity Framework 4.1 and its code first approach. Now I have a domain entity "Voyage" which has a unique ...
0
votes
3answers
3k views

Entity Framework 4 Returning KEY/Primary Key

Entity Framework 4 Returning KEY/Primary Key I’m Trying to find a way to Return a Key/Primary Key without having to create a stored procedure to do it for me using: CREATE PROCEDURE ...
3
votes
1answer
365 views

Handle generation of non-identity primary key

We currently have tables which don't have a identity for primary key. It would be too costly to change that because of interoperability. I'm thinking about handling ObjectContext's SavingChanges ...
2
votes
3answers
2k views

Avoid key violation on insert in EF

I'm using Entity Framework 4 and SQL Server 2008 R2. I have a situation where I would like to insert a record whos primary key fields might match an existing record. Rather than raise and error, I'd ...
0
votes
1answer
350 views

Entity Framework Foreign Key Issue

I am getting a very frustrating issue: System.Data.UpdateException was unhandled by user code Message="Entities in 'MyProjectEntities.GroupingData' participate in the ...
4
votes
1answer
805 views

Entity Framework CTP4 non-standard primary key name usage in BaseEntity

I am struggling already several days to solve my problem with primary key usage. Please, someone help me to solve this puzzle!!! I am using Entity Framework with CTP4 using Code First approach. I ...
1
vote
4answers
3k views

GUID or int entity key with SQL Compact/EF4?

This is a follow-up to an earlier question I posted on EF4 entity keys with SQL Compact. SQL Compact doesn't allow server-generated identity keys, so I am left with creating my own keys as objects are ...
0
votes
1answer
301 views

Is there a specific performance issue with Entity Framework + GUID PKs?

My company has a basic SOA, using Entity Framework for database access. One of our services must interface with a legacy database which uses uniqueidentifier primary keys in the database. Performance ...
0
votes
2answers
869 views

Inserting a record with specified primary key into MySQL via Entity Framework

We began using Entity Framework with MySQL in our project recently. Now I am writing unit tests for the data access level; for that purpose I have created a database with some test data. In the ...
10
votes
2answers
10k views

Composite DB keys with Entity Framework 4.0

The re-design for a large database at our company makes extensive use of composite primary keys on the database. Forgetting performance impacts, will this cause any difficulties when working with ...
2
votes
2answers
993 views

entity-framework a table without a unique key

There is a table in a database that i can't change i'm trying to use with Entity Framework. For sake of argument, there is no unique key possible, not even all the columns, all the columns are of type ...
2
votes
2answers
838 views

Should I use a composite key for a map table, which is also used for a foreign key?

I am using ASP.NET and the Entity Framework to make a website. I currently have a map table for a many to many relationship between... let's say users and soccer teams. So: Users Teams UserTeams ...
3
votes
2answers
285 views

How do I use Navigational Properties as Primary Keys in Entity Framework (.Net 4.0)?

I'm trying out the Model First approach introduced in Entity Framework with VS2010/.Net 4.0, and now I don't really know how to do this. I start out with the following Entities: Contact ...
0
votes
3answers
6k views

Entity framework primary keys in Views

kI have to use a View with the EF but, when e import it, the primary key of the view is displayed incorrectly and for some reason I can't change it.
39
votes
6answers
23k views

Entity Framework and SQL Server View

For several reasons that I don't have the liberty to talk about, we are defining a view on our Sql Server 2005 database like so: CREATE VIEW [dbo].[MeterProvingStatisticsPoint] AS SELECT CAST(0 ...
1
vote
2answers
2k views

Should I neccessarily have a PK on the source table to create an ADO.NET Entity Data Model?

I'm trying to "Entitify" some external table (which I don't administer) in order to use it within a MVC application and in principle I'm not being terribly successful with the attempt (VS2008 output): ...
3
votes
5answers
2k views

Entity Framework and associations between string keys

I am new to Entity Framework, and ORM's for that mather. In the project that I'm involed in we have a legacy database, with all its keys as strings, case-insensitive. We are converting to MSSQL and ...
40
votes
5answers
15k views

ADO.NET Entity Framework: Update Wizard will not add tables

I added a new ADO.Net Entity Data Model into my project and used the Update Wizard to add tables into the model. Five of the selected tables were added to the design surface. Two other tables will ...