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 is commandbuilder in ado.net?
What are the different methods by which we can populate a dataset?
How to creating a SqlCommand Object?
How would you connect to database using .NET?
What is datasource in ado.net?
Explain the difference between sqlcommand object and command behavior object?
How to work with disconnected data - the dataset and sqldataadapter?
What is ole word?
Which is faster dataset or datareader?
What are the differences between OLEDB and SQLClient Providers?
Which is faster entity framework or ado.net?
What is connected architecture in ado.net?
What two types of data providers does ADO.NET supply? What determines which one you should use?
What are the data access namespaces in .NET?
What is dbcontext and dbset in entity framework?