Reputation: 60902
i have a split front-end and back-end access database. i am planning to move it into sql server. the front end will be c# linq to sql.
question: is it going to be possible to have multiple users use this c# front end and for example be able to edit a table at the same time? you know that ms-access you can design a form with a table on it, and if you have multiple users, each having their own front end, they will be able to edit the same table at the same time. is it going to be possible to do the same thing in c#?
Upvotes: 2
Views: 172
Reputation: 54178
You can do this using ADO.Net DataTable.
Concurrency issues need to be carefully managed - for example, when multiple people change the same row, how are you going to handle that?
Upvotes: 3