I'm going to make a WPF application. Can I access my sql database the same way I would in my WinForms application?
Printable View
I'm going to make a WPF application. Can I access my sql database the same way I would in my WinForms application?
Hello,
Yes, there should be no reason that this couldn't happen. Depending on how you created the Data Access Layer in your Windows Form application, you may well be able to use it directly in your WPF application. The one thing that you might want to look into though would be implementing a full MVVM pattern for your WPF application.
Gary