How do you handle data concurrency in .NET ?
Answer Posted / swapna
One of the key features of the ADO.NET DataSet is that it
can be a self-contained and disconnected data store. It can
contain the schema and data from several rowsets in
DataTable objects as well as information about how to
relate the DataTable objects-all in memory.
The DataSet neither knows nor cares where the data came
from, nor does it need a link to an underlying data source.
Because it is data source agnostic you can pass the DataSet
around networks or even serialize it to XML and pass it
across the Internet without losing any of its features.
However, in a disconnected model, concurrency obviously
becomes a much bigger problem than it is in a connected
model.
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What are two important objects of ADO.Net?
What is csdl entity framework?
Define isolation?
How can we perform transactions in .net?
What are the drawbacks of using ado.net?
What is concurrency? How will you avoid concurrency when dealing with dataset? (One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid the problem?)
What is a column variable?
What do you know about ado.net's methods?
What is the default timeout specified for "sqlcommand.commandtimeout" property?
What is bubbled event can you please explain?
What is the difference between Data adaptor and Data set?
What are the different execute methods of Ado.Net?
What is isolation?
how to create a quiz software using 4 options to answer and how to check with answers in the database and award marks....
What is a dataview?