Tagged Questions
4
votes
3answers
10k views
Entity Framework EntityKey / Foreign Key problem
As the result of a form post, I'm trying to save a new Brand record. In my view, Gender is a dropdown, returning an Integer, which is populated from ViewData("gender")
I've setup my link as follows:
...
2
votes
3answers
807 views
How to get first EntityKey Name for an Entity in EF4
How can I get the 1st EntityKey name for an Entity for Entity Framework 4 because I'm building a repository system and I wanted to get an item by Id (which is the primary key oin EF is the 1st ...
1
vote
2answers
87 views
Why does Entity Framework make certain fields EnityKeys when they are not even PK's in the source DB?
Starting out on an Entity Framework project.
Imported the Db I am going to use and right away noticed that many table fields were made into EntityKey types and the source fields are not even Keys. ...
1
vote
2answers
4k views
EntityReference has an EntityKey property value that does not match?
I am attempting to add some entities that I have created. When I try and add the entity in question to the set (see code below) I get the following error:
"The object could not be added or attached ...
1
vote
1answer
128 views
ASP.net MVC: Where in my design should I create/declare entity keys?
When creating a new entity object that has a foreign key value I need to create a new Entity key (Entity Framework in .net 3.5) for the object, but I'm having trouble deciding where in my application ...
0
votes
2answers
52 views
When the EntityKey create and when it disposed
I create a new object and want to attach it to a context like this,
User user = new User();
user.userName=”Kobe”;
context.Attach(user);
An error message appears – “An object with a null EntityKey ...
0
votes
1answer
68 views
Linq to Entities - Reference EntityKey
Now that I have built a database.
Visual Studio 2008 SP1’s ADO.NET Entity Framework has generated an Entity Model like this:
http://img835.imageshack.us/img835/1810/carease15test1ef.png
I have ...
0
votes
1answer
61 views
Multi-table insert fails on EntityKey property
I am trying to update 2 tables: RESTAURANT and HOURS. The tables shere the REST_ID key. I get an error on the line with the arrow (==>): Sorry, I'm trying to teach myself this stuff and it's the ...
0
votes
1answer
581 views
Accessing foreign key value (int) in Entity Framework
I just spent the last 3-4 hours trying to retrieve a foreign key value using linq to entities and a stored procedure. Any advice is much appreciated.
public JsonResult GetEvents(double? start, ...