码迷,mamicode.com
首页 >  
搜索关键字:linq to ef    ( 21280个结果
.net core WebAPI+EF 动态接收前台json,并动态修改数据库
用API开发的人都知道,常用的后台接收参数就是建个DTO,然后前台把这个DTO传过来。后台再更新,例如如下例子: public async Task<IActionResult> PutModel(DTO model) { _context.Entry(model).State = EntitySt ...
分类:数据库   时间:2020-03-13 18:41:50    阅读次数:74
XiaoQi.Study项目(一)
一、项目创建 vs 2019 创建 asp.net core api 项目 二、EF Core 的基本使用 1、创建类库 2、引入下图相关包 3、创建Model 类 可以分开创建,我为了方便放到了一个cs文件。 4、创建上下文类 using Microsoft.EntityFrameworkCore ...
分类:其他好文   时间:2020-03-13 01:09:45    阅读次数:56
EF CodeFirst 通过代码生成数据库
1. 启用迁移: Enable-Migrations 2. 添加迁移: Add-Migration 3. 将迁移更新到数据库:Update-Database 这样,就完成了更新数据库 ...
分类:数据库   时间:2020-03-12 14:08:33    阅读次数:109
ArcGIS Pro二次开发执行GP工具
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
ef601
1、简介 1) 架构介绍 2、补充 1)模型设计器界面右键可调出模型浏览器 3、安装EF 1)通过Nuget包管理工具进行下载 打开Nuget包管理工具,搜索下载EntityFramework 将在引用处引入: System.EntityFramework, System.EntityFramewo ...
分类:其他好文   时间:2020-03-11 23:57:30    阅读次数:104
ArcGIS Pro二次开发画注记
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
ArcGIS Pro二次开发-添加字段
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
ArcGIS Pro C#二次开发-删除字段
using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System; using System.Co ...
分类:Windows程序   时间:2020-03-11 19:26:00    阅读次数:118
ArcGIS Pro二次开发计算一个面层的总面积
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
EF报错 附加类型model失败
附加类型“Models.T_WindowT_Device”的实体失败,因为相同类型的其他实体已具有相同的主键值。在使用 "Attach" 方法或者将实体的状态设置为 "Unchanged" 或 "Modified" 时如果图形中的任何实体具有冲突键值,则可能会发生上述行为。这可能是因为某些实体是新的 ...
分类:其他好文   时间:2020-03-11 11:03:42    阅读次数:79
21280条   上一页 1 ... 45 46 47 48 49 ... 2128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!