10 2021 档案

摘要:一、打开控制面板-程序和功能-启用或关闭windows功能,比较主要的几个功能都勾选一下,然后重启电脑 二、电脑重启之后就可以看到iis管理器了 三、打开文件‘C:\Windows\System32\drivers\etc\hosts’,输入自定义的ip和域名,注意:使用管理员身份打开,否则会出现无 阅读全文
posted @ 2021-10-31 11:28 亦承 阅读(451) 评论(0) 推荐(0) 编辑
摘要:一、创建一个用户自定义表类型 CREATE TYPE [dbo].[Excel_HsCode] AS TABLE( [material_no] [varchar](100) NULL, [oldhs_code] [varchar](100) NULL, [newhs_code] [varchar]( 阅读全文
posted @ 2021-10-29 15:26 亦承 阅读(148) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Linq; using System.Text; using System.Thr 阅读全文
posted @ 2021-10-29 15:12 亦承 阅读(1456) 评论(0) 推荐(0) 编辑
摘要:using System; using System.IO; namespace ConsoleApp4.Extensions { public class Logger { private static object obj = new object(); /// <summary> /// 将日 阅读全文
posted @ 2021-10-29 11:19 亦承 阅读(190) 评论(0) 推荐(0) 编辑
摘要:一、首先运行命令安装NuGet包:(使用命令行可以避免一些NuGet包版本兼容问题) 1、Install-Package Microsoft.EntityFrameworkCore 2、Install-Package Microsoft.EntityFrameworkCore.SqlServer 二 阅读全文
posted @ 2021-10-29 11:13 亦承 阅读(1418) 评论(0) 推荐(0) 编辑
摘要:var pages = getCurrentPages(); var beforePage = pages[pages.length - 2]; // 调用列表页的获取数据函数 wx.navigateBack({ delta: 1, //返回的页面数,如果 delta 大于现有页面数,则返回到首页。 阅读全文
posted @ 2021-10-22 17:08 亦承 阅读(1950) 评论(0) 推荐(0) 编辑
摘要:select a.name tabname,a1.name '字段',b.value '描述' from sysobjects a left join sys.columns a1 on a.id = a1.object_id left join sys.extended_properties b 阅读全文
posted @ 2021-10-22 17:05 亦承 阅读(370) 评论(0) 推荐(0) 编辑
摘要:onLoad(options) { const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate 阅读全文
posted @ 2021-10-22 17:02 亦承 阅读(361) 评论(0) 推荐(0) 编辑
摘要:using Fast.NetCore.Web.Extend; using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Web; n 阅读全文
posted @ 2021-10-22 16:50 亦承 阅读(117) 评论(0) 推荐(0) 编辑
摘要:using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Fast.NetCo 阅读全文
posted @ 2021-10-22 16:49 亦承 阅读(320) 评论(0) 推荐(0) 编辑
摘要:using Fast.NetCore.Web.Interface; using Newtonsoft.Json; using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq; 阅读全文
posted @ 2021-10-22 16:47 亦承 阅读(689) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; 阅读全文
posted @ 2021-10-22 16:31 亦承 阅读(1764) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Text.RegularExpr 阅读全文
posted @ 2021-10-22 16:18 亦承 阅读(372) 评论(0) 推荐(0) 编辑
摘要:private static readonly object Obj_Lock = new object(); public static string GetUserName() { lock (Obj_Lock) { return "张三"; } } 阅读全文
posted @ 2021-10-22 16:09 亦承 阅读(329) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示