网站首页 站内搜索

搜索结果

查询Tags标签: Using,共有 1013条记录
  • asp.net core .Net 5 Entity Framework core 类库 使用数据库连接字符串的两种方式

    由于本人基础差,采用EF core 创建数据库时,配置数据库连接字符串时,采用了.NET 5 因此记录一下。 方式一: 配置连接字符串:1 using Microsoft.EntityFrameworkCore;2 using Microsoft.EntityFrameworkCore.Design;3 4 namespace MagazineModel.Models5 {6 publi…

    2021/12/7 2:24:58 人评论 次浏览
  • Acwing第 28 场周赛【完结】

    这把打的不顺,开头交不上去就慌了。后面的T2,T3wa麻了。目录 4082. 子序列【签到】4083. 最大公约数【分解因子】4084. 号码牌【并查集】4082. 子序列【签到】https://www.acwing.com/problem/content/description/4085/ 暴力做法: #include<bits/stdc++.h> using …

    2021/12/4 23:48:23 人评论 次浏览
  • Acwing第 28 场周赛【完结】

    这把打的不顺,开头交不上去就慌了。后面的T2,T3wa麻了。目录 4082. 子序列【签到】4083. 最大公约数【分解因子】4084. 号码牌【并查集】4082. 子序列【签到】https://www.acwing.com/problem/content/description/4085/ 暴力做法: #include<bits/stdc++.h> using …

    2021/12/4 23:48:23 人评论 次浏览
  • 2043:【例5.11】杨辉三角形

    2043:【例5.11】杨辉三角形时间限制: 1000 ms 内存限制: 65536 KB 提交数: 6968 通过数: 4548 【题目描述】例5.11 打印杨辉三角形的前n(2≤n≤20)行。杨辉三角形如下图: 当=5时 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1输出:1 1 …

    2021/12/4 23:16:40 人评论 次浏览
  • 2043:【例5.11】杨辉三角形

    2043:【例5.11】杨辉三角形时间限制: 1000 ms 内存限制: 65536 KB 提交数: 6968 通过数: 4548 【题目描述】例5.11 打印杨辉三角形的前n(2≤n≤20)行。杨辉三角形如下图: 当=5时 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1输出:1 1 …

    2021/12/4 23:16:40 人评论 次浏览
  • .net core 内存队列,解决并发

    using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Siia.Model.Infrastructure; using Siia.RedisCache; using Siia.Utility; using System; using System.Collections.Concurrent; using System.Collections.Generic; using …

    2021/12/4 7:19:52 人评论 次浏览
  • .net core 内存队列,解决并发

    using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Siia.Model.Infrastructure; using Siia.RedisCache; using Siia.Utility; using System; using System.Collections.Concurrent; using System.Collections.Generic; using …

    2021/12/4 7:19:52 人评论 次浏览
  • 录一次RestFul风格的api-18(单点登陆-jwt实操-根据用户角色来添加权限)

    Claim 这个登机牌每一个信息就是claim 机票和登机牌是各司其职的。 添加var claims = new[]{// subnew Claim(JwtRegisteredClaimNames.Sub, "fake_user_id"),new Claim(ClaimTypes.Role,"Admin")};修改action[Authorize(Roles = "Admin"…

    2021/12/4 6:18:06 人评论 次浏览
  • 录一次RestFul风格的api-18(单点登陆-jwt实操-根据用户角色来添加权限)

    Claim 这个登机牌每一个信息就是claim 机票和登机牌是各司其职的。 添加var claims = new[]{// subnew Claim(JwtRegisteredClaimNames.Sub, "fake_user_id"),new Claim(ClaimTypes.Role,"Admin")};修改action[Authorize(Roles = "Admin"…

    2021/12/4 6:18:06 人评论 次浏览
  • C#基础系列-过滤器与特性

    一、前言编程中我们会使用特性(Attribute)标注到程序集、类、方法、属性上进行描述,在asp.net MVC或者Asp.net WebApi中使用过滤器(Filter)对Action、Result、Exception、Authorize进行AOP(切面编程)。并且过滤器和特性结合,将过滤器优雅的使用在类和属性上。本文…

    2021/12/3 11:36:15 人评论 次浏览
  • C#基础系列-过滤器与特性

    一、前言编程中我们会使用特性(Attribute)标注到程序集、类、方法、属性上进行描述,在asp.net MVC或者Asp.net WebApi中使用过滤器(Filter)对Action、Result、Exception、Authorize进行AOP(切面编程)。并且过滤器和特性结合,将过滤器优雅的使用在类和属性上。本文…

    2021/12/3 11:36:15 人评论 次浏览
  • 软件创新实验室培训C++笔记1

    循环一 1.输出1-n之间所有偶数 2.斐波那契数列 3.表演打分 4.棋盘上的学问 5.统计 6.素数的判断 7.最大公约数 8.数字反转 9.回文日期 10.回文日期2(构造法) 11.级数求和 12.角谷猜想 13.统计正数 14.求自然常数e的值 15.正常血压#include <bits/stdc++.h> using …

    2021/12/3 9:38:55 人评论 次浏览
  • 软件创新实验室培训C++笔记1

    循环一 1.输出1-n之间所有偶数 2.斐波那契数列 3.表演打分 4.棋盘上的学问 5.统计 6.素数的判断 7.最大公约数 8.数字反转 9.回文日期 10.回文日期2(构造法) 11.级数求和 12.角谷猜想 13.统计正数 14.求自然常数e的值 15.正常血压#include <bits/stdc++.h> using …

    2021/12/3 9:38:55 人评论 次浏览
  • OPC学习

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; //using System.Windows.Forms; using System.Net; using System.Thre…

    2021/12/1 23:08:22 人评论 次浏览
  • OPC学习

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; //using System.Windows.Forms; using System.Net; using System.Thre…

    2021/12/1 23:08:22 人评论 次浏览
扫一扫关注最新编程教程