上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 86 下一页
摘要: 一、基本查询 1.查询所有数据 [HttpGet] public IActionResult Index() { List<MdLength> list; using (var context = new DBContext_PMS1(_dBContext)) { //查询所有数据 list = c 阅读全文
posted @ 2020-06-16 16:50 富坚老贼 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 有两种方式配置与数据库之间的关系模型:fluent API 配置模型 和 数据注释模型 一、创建实体模型 1.创建实体模型 [Table("T_BD_Sc")] public class Sc { [Key] public int SC_ID { get; set; } public string 阅读全文
posted @ 2020-06-16 15:45 富坚老贼 阅读(211) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { new HomeController(new ServiceB()).print(); Console.ReadLine(); } } class HomeController { private I 阅读全文
posted @ 2020-06-14 15:42 富坚老贼 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 创建一个空web 1.添加依赖 public void ConfigureServices(IServiceCollection services) { services.AddSignalR(); } 2.路由设置 app.UseRouting(); app.UseEndpoints(endpoi 阅读全文
posted @ 2020-06-11 13:46 富坚老贼 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 使用@输出C#变量或表达式 <div>@a</div> <div>@DateTime.Now</div> @code { int a = 10; } 代码块,只有声明以后才可以使用 @{ string b = "bbb"; } <div>@b</div> @{ b = "b1"; } <div>@b 阅读全文
posted @ 2020-06-11 09:39 富坚老贼 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1.服务器安装iis . 默认安装了下列功能 2.IIS创建web网站 创建一个web站点,之后修改应用连接池,clr版本未无托管代码 3.安装 .NET Core 托管捆绑包 https://docs.microsoft.com/zh-cn/aspnet/core/tutorials/publis 阅读全文
posted @ 2020-06-09 20:27 富坚老贼 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 配置系统有3个核心对象 IConfigurationSource 代表配置数据最原始的来源 IConfigurationBuilder是IConfiguration对象的创建者 IConfiguration 读取配置信息的对象 一、在内存中读取配置文件 二、在持久化文件读取配置文件 appsetti 阅读全文
posted @ 2020-06-09 10:33 富坚老贼 阅读(288) 评论(0) 推荐(0) 编辑
摘要: @page "/meter" @inject HttpClient Http <h3>Meter</h3> @if (stu == null) { <p><em>Loading...</em></p> } else { <h1>@stu.name</h1> } @code { private Stu 阅读全文
posted @ 2020-06-06 14:34 富坚老贼 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 查看是否有死锁 select sess.sid, sess.serial#, lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from v$locked_object lo, dba_objects ao, v$ 阅读全文
posted @ 2020-06-06 09:35 富坚老贼 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 服务器杀死rdp剪切板进程 在cmd 中重新启动 rdpclip.exe 阅读全文
posted @ 2020-06-05 14:58 富坚老贼 阅读(187) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 86 下一页