1 --建表 2 create table xml_table(id int identity primary key, xmldata xml) 3 --插入数据 4 insert into xml_table(xmldata) values 5 ('<?xml version="1.0" enc ...
分类:
数据库 时间:
2020-07-05 00:35:09
阅读次数:
110
前言 最近刚把个人博客的主要功能模块写完了,想把IdentityServer4引入,准备基于IdentityServer4+EF+Identity来实现一套前后端分离的身份验证授权的管理系统(即使用Vue写登陆页面以及IdentityServer4的相关资源管理页面,然后后端提供IdentitySe ...
分类:
Web程序 时间:
2020-07-04 11:50:30
阅读次数:
184
https://www.bangzhujiaocheng.com/126.html In order to access certain membership resources, you must accept the latest Apple Developer Program License ...
分类:
移动开发 时间:
2020-07-03 19:52:27
阅读次数:
683
设计表如下 --收入表 CREATE TABLE income ( inid INT PRIMARY KEY IDENTITY(1, 1), indate DATETIME, --时间 intype VARCHAR(10), -- 收入类型 amount DECIMAL(18, 2) --金额 ) ...
分类:
数据库 时间:
2020-07-02 10:45:44
阅读次数:
58
Stream API为我们提供了Stream.reduce用来实现集合元素的归约。reduce函数有三个参数: Identity标识:一个元素,它是归约操作的初始值,如果流为空,则为默认结果。 Accumulator累加器:具有两个参数的函数:归约运算的部分结果和流的下一个元素。 Combiner合 ...
分类:
编程语言 时间:
2020-07-01 09:26:36
阅读次数:
60
因需要在用户列表中点详情按钮来到当前页,所以需要展示分组详情,并展示当前所属角色组的用户 public async Task<ActionResult> Details(string id) { //查找是否存在角色组 var role = await _roleManager.FindByIdAs ...
分类:
其他好文 时间:
2020-06-30 14:47:52
阅读次数:
161
首先创建视图模型 using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Shop.ViewModel { public class CreateEditRoleViewModel { [ ...
分类:
其他好文 时间:
2020-06-30 10:52:53
阅读次数:
43
因只有角色名能修改故继续使用创建角色的视图模型 using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Shop.ViewModel { public class CreateEditRo ...
分类:
其他好文 时间:
2020-06-30 10:51:47
阅读次数:
48
需要将目前所有角色名显示出来,方法同用户管理 一、创建Index acction public async Task<ActionResult> Index() { var roles = await _roleManager.Roles.ToListAsync(); return View(rol ...
分类:
其他好文 时间:
2020-06-30 10:42:47
阅读次数:
56
常见符号: #表示id .表示class >表示子元素,层级 一个空格也表示子元素,但是是所有的后代子元素,相当于xpath中的相对路径 实例如下: //#input 选择id为input的节点 //.Volvo 选择class为Volvo的节点 //div#radio>input 选择id为rad ...
分类:
Web程序 时间:
2020-06-28 22:47:52
阅读次数:
101