SqlSugar 是一款简单易用的ORM ,在国内市场占有率也比较高,
在今年10月份官网改版后 提供了完整的服务,让您的项目没有后顾之忧
下载地址 :https://github.com/sunkaixuan/SqlSugar
1、创建MVC项目
打开VS2019及以上版本 ,然后新建一个Mvc项目,默认MVC是不支持路由的,需要在Startup.cs里面加入
app.UseEndpoints(endpoints => { endpoints.MapControllerRoute (name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); endpoints.MapControllerRoute ("areaRoute", "{area:exists}/{controller=Admin}/{action=Index}/{id?}"); });