# LSO_WEB应用开发_服饰工艺业务系统 **Repository Path**: faser/lso-2u-zhuzhen-webformapp ## Basic Information - **Project Name**: LSO_WEB应用开发_服饰工艺业务系统 - **Description**: 面向服饰工艺中 货源-工厂-供货商 的业务系统 - **Primary Language**: ASP - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-17 - **Last Updated**: 2024-06-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: Aspnet ## README #### 介绍 项目采用DBFirst, 如需使用请先还原数据库. ### 构建 #### 1. 还原 1. 添加nuget.org 源:https://api.nuget.org/v3/index.json 2. 还原NuGet包 #### 2. 迁移创建数据库 ``` > Add-Migration InitialCreate > Update-Database ``` ### 开发 #### 更新数据库模型 ``` Scaffold-DbContext "Data Source=.;Initial Catalog=DressWorkSystem;Integrated Security=SSPI" Microsoft.EntityFrameworkCore.SqlServer -o ./Models/Database -Force -DataAnnotation ```