1.创建Api项目 我用的是VS2019 Core3.1 .打开Vs2019 创建Asp.Net Core Web应用程序命名CoreWebApi 创建选择API 在Controller文件夹下面添加一个Api控制器 FileUp,修改Api的路由 [Route("api/[controller]/[action]")] 这样就可以访问到具体的某一个了 写一个测试 api using System; using System.Collections.Generic; using S…
前言 由于我们现在每次EF实体模型变化的时候每次都是手动更改,我们想通过代码的方式让他自动更新,或者程序启动的时候添加一些数据进去 DbContextSeed初始化 首先,在Data文件夹下添加一个ApplicationDbContextSeed.cs初始化类 using Microsoft.AspNetCore.Identity; using MvcCookieAuthSample.Models; using System; using System.Collections.Generic;…
本文转自:https://docs.microsoft.com/en-us/aspnet/core/client-side/bootstrap?view=aspnetcore-2.1 Bootstrap is currently the most popular web framework for developing responsive web applications. It offers a number of features and benefits that can improve…