- Mastering Entity Framework Core 2.0
- Prabhakaran Anbazhagan
- 299字
- 2021-07-02 21:16:36
The File menu
From the File menu, perform the following steps:
- Select New | Project.
- On the left pane, select Templates | Visual C# | .NET Core.
- Select the ASP.NET Core Web Application template from the list.
- As displayed in the previous screenshot, enter MasteringEFCore.CodeFirst.Starter as the Name and MasteringEFCore as the Solution name and click OK.
Irrespective of the previous two approaches, the selected template will provide New ASP.NET Web Application (.NET Core) dialog, to let us choose from the following:
-
- Empty
- Web API: Creates a Web API project
- Web Application (Model-View-Controller): Creates an MVC Web application which also allows us to create APIs
We will be selecting Web Application (Model-View-Controller) from the dialog as shown here:

New ASP.NET web project dialog
- In our case, select .NET Core, ASP.NET Core 2.0, and the Web Application (Model-View-Controller) template, and also keep the Authentication set to No Authentication. Click OK:
ASP.NET Core web application
The generated web application displays a tabbed interface which is new to us (instead of displaying index.cshtml). It allows us to access documentation, connect to any service or even decide on publishing options right from the start page.
If we look closely, we will notice that Visual Studio was silently restoring the packages, and almost everything was part of a package in .NET Core. No more heavyweight framework which always loads tons of DLLs even though we don't require them! Now everything is broken into lighter packages which we could utilize based on our requirements.
I know getting into MVC would be a little outside of the scope of this chapter, but let's dig into a few details before we deep pe into the Entity Framework.
- C# 7 and .NET Core Cookbook
- 數據結構(Java語言描述)
- Vue.js 3.0源碼解析(微課視頻版)
- Groovy for Domain:specific Languages(Second Edition)
- 大學計算機基礎(第2版)(微課版)
- C/C++程序員面試指南
- Android應用案例開發大全(第二版)
- Java高并發核心編程(卷1):NIO、Netty、Redis、ZooKeeper
- Mobile Device Exploitation Cookbook
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰
- 微課學人工智能Python編程
- Learning VMware vSphere
- 零基礎輕松學C++:青少年趣味編程(全彩版)
- 編程的原則:改善代碼質量的101個方法
- Java Web入門很輕松(微課超值版)