Student Management System (i) Establishment of the project
1. Description
Read the requirements of the textbook should be to do the C/S mode, and the entity Framework should be not used, so the best choice is WPF.
Development environment: VS + RC + SQL Server 2014. VS 2013 is fine, but there is no C # 6.0, and WPF may be a little bit different, but I haven't looked at it yet.
In addition, it is written by the side, all estimates will have what a mess of mistakes (escape.
2. Building the Project
The entire solution has two projects: a WPF project and a library class project to write the UI and library classes, respectively. Of course it can all be written in a project, and now this is for the convenience of management. As for the unit test, add it later.,<del> still don't know when to continue writing </del>.
First, select Visual C #, build a WPF project, change the name to Eductionmanagerui, change the solution name to Educationmanager, and then OK.
VS 2015 will automatically let you choose Team management, where Git is selected, and you can ignore point cancellations.
Right-click on the first line in the Solution Explorer, create a new project, select the Library class, and name Educationmanagerclass, tap OK, the automatically generated Class1.cs in the new project can be deleted
After you've set up, right-click Educationmanagerui and add a dependency on Educationmanagerclass
Yes, done!
The next step is to set up a database, open SSMs, and create a database called Educationmanager.
Then return to VS, select tools → connect to the database, fill in your server name, and select the database educationmanager you just created below, click Test Connection to see if you can connect, then click OK.
Once the connection is complete, you can see the database in Server Explorer (typically on the left side of VS, you can press Crtl+alt+s if you don't have one).
At this point, the construction of the project is completed.
"Scribble Code deceptive series" Zjut database large experiment-student management System (i): Establishment of the project