开发者

Id of object before insertion into database (Linq to SQL)

开发者 https://www.devze.com 2022-12-20 17:36 出处:网络
From what I gather, Linq to SQL doesn\'t act开发者_开发知识库ually execute any database commands (including the opening of database connections) until the SubmitChanges() method is called. If this is

From what I gather, Linq to SQL doesn't act开发者_开发知识库ually execute any database commands (including the opening of database connections) until the SubmitChanges() method is called. If this is the case, I would like to increase the efficiency of a few methods. Is it possible for me to retrieve the ID of an object before inserting it? I'd rather not call SubmitChanges() twice, if it's possible for me to know the value of the ID before it's actually inserted into the database. From a logical point of view, it would only makes sense to have to open a connection to the database in order to find out the value, but does an insertion procedure also have to take place?

Thanks


The usual technique to solve this, is to generate a unique identifier in the application layer (such as a GUID) and use this as the ID. That way you do not have to retrieve the ID on a subsequent call.

Of course, using a GUID as a primary key can have it's drawbacks. If you decide to go this way look up COMB GUID.


Well, here is the problem: You get somehow id BEFORE inserting to database, and do some processing with it. In the same time another thread does the same, and get's the same ID, you've got a conflict.

I.e. I don't think there is an easy way of doing this.


I don't necessarily recommend this, but have seen it done. You can calculate your own ID as an integer using a stored procedure and a table to hold the value of the next ID. The stored procedure selects the value from the table to return it, then increments the value. The table will look something like the following

Create Table Keys(
name varchar(128) not null primary key,
nextID int not null
)

Things to note before doing this is that if you select and then update in 2 different batches you have potential key collision. Both steps need to be treated as an atomic transaction.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号