vote up 3 vote down star
1

Hi everyone,

How can I get a record id after saving it into database. Which I mean is actually something like that.

I have Document class (which is entity tho from DataBase) and I create an instance like

Document doc = new Document() {title="Math",name="Important"};
dataContext.Documents.InsertOnSubmit(doc);
dataContext.SubmitChanges();

than what I want is to retrieve it's id value (docId) which is located in database and it's primary key also automatic number. One thing, there will be lots of users on the system and submits tons of records like that.

Thanks in advance everybody :)

flag
I think you should unmark it as community wiki. – Nathan W Dec 16 '08 at 6:22
Ok but I don't know actually Community Wiki means ? – Aaron Dec 16 '08 at 7:53

4 Answers

vote up 4 vote down check

Once you have run .SubmitChanges then doc.docId should be populated with the Id that was created on the database.

link|flag
vote up 0 vote down

Thanks people.

You're all awesome :)

link|flag
vote up 2 vote down

Like everyone has said you should be able to do something like this:

Document doc = new Document() {title="Math",name="Important"};
dataContext.Documents.InsertOnSubmit(doc);
dataContext.SubmitChanges();

then get the Id with:

int ID = doc.docId;
link|flag
Thanks for helping and revising the code. – Aaron May 28 at 5:14
vote up 1 vote down

Linq to SQL does change tracking by default. So once your row is inserted, your object is updated and added to the datacontext. You will have a new valid row in your documents collection.

This blog post by Charlie Calvert has some good Linq samples for download. I keep it just for reference.

link|flag

Your Answer

Get an OpenID
or

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