I want to create multiple winform from a SQL Database with multiple realtionships and can't find a good turotrial. My end goal for this front end application is to have:
- read data to 6-7 forms and the forms to be able to insert,update,delete
- 1 of the forms will have a tab
- button to go to the next/previous/first/last row that has data from a few different tables with relationships.
- The forms will link to one complaint from tables below
- Buttons will lead data-entry person to get to each of the forms.
- Each form will update, insert, delete, or read from SQL Server with the tables listed below.
I've watched many videos similar to the link below but the problem is that these videos don't show the form reading the data from SQL Server, then it being searchable to find a "Complaint" to update or delete. You have to manually enter in a data for it to be updated or delete for these videos.
https://www.youtube.com/watch?v=P3FpM8f2suI
The only thing with this is that, most videos use datagrids or list boxes. I do not want to use a list box and datagris. I just want to use a textbox for each field. I've also heard entityframework is the way I should go.
What I have are:
- Customer
- Customer Service Rep
- Notes
- Complaints
- Complaint Allegations
All tables are either left joined or joined to the Complaints table by the CompID.
My question is, am I searching for videos with wrong keywords? I am using:
1. Update, Insert, Read, Delete WinForm C# SQL Server
2. C# frontend and SQL Server Backend
3. Winform C# and SQL Server