摘要: 一、创建一个用户自定义表类型 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 亦承 阅读(162) 评论(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 亦承 阅读(1498) 评论(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 亦承 阅读(199) 评论(0) 推荐(0)
摘要: 一、首先运行命令安装NuGet包:(使用命令行可以避免一些NuGet包版本兼容问题) 1、Install-Package Microsoft.EntityFrameworkCore 2、Install-Package Microsoft.EntityFrameworkCore.SqlServer 二 阅读全文
posted @ 2021-10-29 11:13 亦承 阅读(1579) 评论(0) 推荐(0)