vote up 3 vote down star
2

We have a table that looks roughly like this:

CREATE TABLE Lockers 
{
  UserID int NOT NULL PRIMARY KEY (foreign key),
  LockerStyleID int (foreign key),
  NameplateID int (foreign key)
}

All of the keys relate to other tables, but because of the way the application is distributed, it's easier for us to pass along IDs as parameters. So we'd like to do this:


Locker l = new Locker { UserID = userID, LockerStyleID = lockerStyleID, NameplateID = nameplateID };
entities.AddLocker(l);

We could do it in LINQ-to-SQL, but not EF?

flag

This is something I'd like to find out too. From what I read you have to give it the entity via the Navigation links. – webdtc Jan 26 at 19:16
If I could, I would retag this question a little bit. It is specific to .NET 3.5, MS will fix the issue with .NET 4 (or so I read somewhere...) – Pieter Breed Jun 24 at 12:01

5 Answers

vote up 2 vote down check

This missing feature seems to annoy a lot of people.

  • Good news: MS will address the issue with .NET 4.0.
  • Bad news: for now, or if you're stuck on 3.5 you have to do a little bit of work, but it IS possible.

You have to do it like this:

Locker locker = new Locker();
locker.UserReference.EntityKey = new System.Data.EntityKey("entities.User", "ID", userID);
locker.LockerStyleReference.EntityKey = new EntityKey("entities.LockerStyle", "ID", lockerStyleID);
locker.NameplateReference.EntityKey = new EntityKey("entities.Nameplate", "ID", nameplateID);
entities.AddLocker(locker);
entities.SaveChanges();
link|flag
Yes, that missing feature is annoying! :) – Rob Jun 26 at 16:35
vote up 0 vote down

You could make an extension method that constructs the entity based on these ID's.

link|flag
vote up 0 vote down

I'm not sure that's exactly what I want to do driAn. I don't want to construct the entity and I don't want to request it from the database just to submit a single ID column back.

link|flag
vote up 0 vote down

Using an EntityKey solves your problem ;)

alk.

link|flag
vote up 0 vote down

What I've been doing to make things easy is adding the foreign key property myself in the partial class:

public int UserID
{
   get
   {
      if (this.User != null)
         return this.User.UserID;
   }
   set 
   {
      this.UserReference.EntityKey = new System.Data.EntityKey("entities.User", "ID", value);
   }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.