Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
what is the best way to update a sql server back end in vb.net
Posted
Comments
Richard MacCutchan 15-Nov-14 7:47am    
By using the UPDATE command. Perhaps you could try to post a more detailed expalnation of what problem you are trying to solve.
OriginalGriff 15-Nov-14 7:52am    
The problem is that "Best way" is a subjective thing, and depends on a huge number of factors in your application - none of which we know!

Use the "Improve question" widget to edit your question and provide better information.

1 solution

First of all, there is no such thing called "Best way". The design of your application depends on a number of factors such as requirements, timeline, scalability and your own skills/experience with a particular method.

Entity Framework is a buzz-word these days and it's really nice in a manner. You can definitely give it a shot. Look at the link below to have a basic CRUD example:

http://www.asp.net/mvc/overview/getting-started/getting-started-with-ef-using-mvc/implementing-basic-crud-functionality-with-the-entity-framework-in-asp-net-mvc-application[^]

Otherwise, you can still use the good old ADO.Net for updating the SQL data sources.

http://msdn.microsoft.com/en-us/library/vstudio/33y2221y(v=vs.100).aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900