用API开发的人都知道,常用的后台接收参数就是建个DTO,然后前台把这个DTO传过来。后台再更新,例如如下例子: public async Task<IActionResult> PutModel(DTO model) { _context.Entry(model).State = EntitySt ...
分类:
数据库 时间:
2020-03-13 18:41:50
阅读次数:
74
一、项目创建 vs 2019 创建 asp.net core api 项目 二、EF Core 的基本使用 1、创建类库 2、引入下图相关包 3、创建Model 类 可以分开创建,我为了方便放到了一个cs文件。 4、创建上下文类 using Microsoft.EntityFrameworkCore ...
分类:
其他好文 时间:
2020-03-13 01:09:45
阅读次数:
56
1. 启用迁移: Enable-Migrations 2. 添加迁移: Add-Migration 3. 将迁移更新到数据库:Update-Database 这样,就完成了更新数据库 ...
分类:
数据库 时间:
2020-03-12 14:08:33
阅读次数:
109
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System.Text; using Syst ...
分类:
其他好文 时间:
2020-03-12 12:55:51
阅读次数:
84
1、简介 1) 架构介绍 2、补充 1)模型设计器界面右键可调出模型浏览器 3、安装EF 1)通过Nuget包管理工具进行下载 打开Nuget包管理工具,搜索下载EntityFramework 将在引用处引入: System.EntityFramework, System.EntityFramewo ...
分类:
其他好文 时间:
2020-03-11 23:57:30
阅读次数:
104
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI ...
分类:
其他好文 时间:
2020-03-11 23:30:43
阅读次数:
92
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co ...
分类:
其他好文 时间:
2020-03-11 19:27:29
阅读次数:
56
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System ...
分类:
其他好文 时间:
2020-03-11 15:32:14
阅读次数:
137
附加类型“Models.T_WindowT_Device”的实体失败,因为相同类型的其他实体已具有相同的主键值。在使用 "Attach" 方法或者将实体的状态设置为 "Unchanged" 或 "Modified" 时如果图形中的任何实体具有冲突键值,则可能会发生上述行为。这可能是因为某些实体是新的 ...
分类:
其他好文 时间:
2020-03-11 11:03:42
阅读次数:
79