The title speaks for itself. I’m building a winforms C# 2.0 app.
Any tutorials or inspiring ideas?
The title speaks for itself. I’m building a winforms C# 2.0 app. Any tutorials
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
ADO.NET is a big topic – but the keywords to search for here are
SqlConnection,SqlCommand,SqlDataReader, etc. If you likeDataSet(I’m not a fan, but some people love them), then the dataset designer will do a lot for you.Another option is to use a .NET 2.0 web-service (asmx) for data access via a central app-server – making it a “smart client”.
With later .NET versions, WCF (.NET 3.0), LINQ-to-SQL (.NET 3.5), Entity Framework (.NET 3.5 SP1) and ADO.NET Data Services (.NET 3.5 SP1) become options.