I have created a SQL Server database for my application (the ERD is shown here):
This database has already been populated with data from the School MIS, and I wish to "link" it to the application using Entity Framework.
I have already added classes such as Student, Staff as model classes within the project.
It might also be worth noting that I intend to use the Roles feature within ASP.NET to implement access rights.
How can I link this database to Entity Framework, or should I use EF to generate one from code?
