简体   繁体   中英

Adding a controller with read/write actions and views, using Entity Framework - what is “Data Context class”?

So in Visual Studio, when I go to add a controller, I get this dialog:

在此输入图像描述

I was curious what Visual Studio would create if I chose "Controller with read/write actions and views, using Entity Framework", as I'm using EF.

So I set my Model class to a view model created, chose Razor for my views, but I don't know what Data context class is? The only thing in the dropdown is my view model I created.

The Data Context class is the top level EF object, the one that contains all your collections of entities that map to tables in the database.

The controller needs to be able to access this so that it can perform CRUD operations.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM