# RepositoryTestWeb **Repository Path**: autopilot/RepositoryTestWeb ## Basic Information - **Project Name**: RepositoryTestWeb - **Description**: CBLibrary.Repository.Core 组件 demo示例 - **Primary Language**: C# - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-04-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CBLibrary.Repository.Core Demo ## 数据库 ### 创建数据库(mysql为例) ``` CREATE DATABASE IF NOT EXISTS RepositoryTestDB DEFAULT CHARSET utf8 COLLATE utf8_general_ci; ``` ### 生成迁移脚本 ``` dotnet ef migrations add Init // dotnet ef database update(设置了自动迁移的不用执行) ```