码迷,mamicode.com
首页 > 其他好文 > 详细

XiaoQi.Study项目(一)

时间:2020-03-13 01:09:45      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:gas   config   create   poi   mes   col   uid   space   open   

一、项目创建

  vs 2019 创建 asp.net core api 项目

二、EF Core 的基本使用

  1、创建类库

  2、引入下图相关包

  技术图片

 

 

   3、创建Model 类 可以分开创建,我为了方便放到了一个cs文件。

  4、创建上下文类

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Text;
using XiaoQi.Study.EF;

namespace XiaoQi.Study.EF
{
    public class MyContext : DbContext
    {
        public MyContext(DbContextOptions<MyContext> options) : base(options)
        {

        }
        public DbSet<UserInfo> UserInfos { get; set; }
        public DbSet<RoleInfo> RoleInfos { get; set; }

        public DbSet<UserRole_R> UserRole_Rs { get; set; }
        public DbSet<RoleMenu_R> RoleMenu_Rs { get; set; }

        public DbSet<MenuInfo> MenuInfos { get; set; }

        public DbSet<ButtonInfo> ButtonInfos { get; set; }

        public DbSet<MenuButton_R> MenuButton_Rs { get; set; }

    //这部分对表的相关设置
protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<RoleInfo>() .HasKey(c => c.RoleId); modelBuilder.Entity<UserInfo>() .Ignore(c => c._RoleInfo) .HasKey(c => c.UserId); modelBuilder.Entity<UserRole_R>() .HasKey(c => c.UserRoleId); modelBuilder.Entity<RoleMenu_R>() .HasKey(o => o.RoleMenuId); modelBuilder.Entity<MenuInfo>() .HasKey(o => o.MenuInfoId); modelBuilder.Entity<ButtonInfo>() .HasKey(o => o.ButtonId); modelBuilder.Entity<MenuButton_R>() .HasKey(o => o.MenuButtonId); }
      //设置表的连接字符串 或者sqlite 的绝对路径
protected override void OnConfiguring(DbContextOptionsBuilder options) { options.UseSqlite(@"Data Source=D:\Code\Project\XiaoQi.Study\XiaoQi.Study.API\DB\userinfo.db"); } } }

  5、在 程序包管理器控制台下依次执行以下命令

  Add-Migration InitialCreate

  Add-Migration 命令为迁移搭建基架,以便为模型创建一组初始表。

 

  Update-Database

  Update-Database 命令创建数据库并向其应用新的迁移。

三、Swagger 的基本使用

  1、安装 Swashbuckle.AspNetCore 包

  2、添加并配置Swagger 中间件

    1)Services 注册 

//Swagger 相关注册
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "XiaoQi API", Version = "v1" });

//为Swagger json 和 UI 增加注释信息
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
c.IncludeXmlComments(xmlPath);
});

    2)启用中间件

app.UseSwagger();
app.UseSwaggerUI(c =>
{
   c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
    c.RoutePrefix = string.Empty;
});

   3)启用XML注释

  右击 解决项目 点击技术图片,在以下节点加入以下内容 

<PropertyGroup>
  <GenerateDocumentationFile>true</GenerateDocumentationFile>
  <NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>

  

  

 

XiaoQi.Study项目(一)

标签:gas   config   create   poi   mes   col   uid   space   open   

原文地址:https://www.cnblogs.com/xiaoqiyaozou/p/12483724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!