Linq to SQL: how get row security between write access??

Posted by Francisco on Stack Overflow See other posts from Stack Overflow or by Francisco
Published on 2010-05-11T12:55:54Z Indexed on 2010/05/11 13:14 UTC
Read the original article Hit count: 195

Filed under:
|

I would like to allow two threads to write in a table at the same time (I know the problem of updating the same row, but this would be a story apart). I need that in behalf of speed up the operations in my aplication (one thread could write in row X while another could do the same in row X+n instead of waiting the first to finalize).

So, can I block rows instead of tables with Linq to SQL?

Thanks.

© Stack Overflow or respective owner

Related posts about linq-to-sql

Related posts about secu