码迷,mamicode.com
首页 >  
搜索关键字:linq to ef    ( 21280个结果
[Linux]RabbitMQ - 解决Error: unable to connect to node rabbit@localhost: nodedown
1 问题 环境: CentOS7.8.2003 (x86 / 64bit) 版本: RabbitMQ 3.6.15 (Erlang 19.3) 安装方式: 二进制源码压缩安装 2 解决思路 2.1 思路1 关闭进程,并重启 step1 查询mq的进程 ps -ef | grep rabbitmq s ...
分类:系统相关   时间:2020-06-19 12:23:47    阅读次数:130
Linux 结合grep kill掉指定字符进程
ps -ef | grep tomcat | awk '{print $2}' | grep '^3' | xargs kill -9 ps -ef | grep tomcat (查看tomcat 所有进程) awk '{print $2}' (打印输出第二行) grep '^3' (匹配以3 开头 ...
分类:系统相关   时间:2020-06-19 12:20:24    阅读次数:112
JWT帮助类(相关方法)
注意:首先安装JWT程序包 using System;using System.Collections.Generic;using System.Linq;using System.Web; using JWT;using JWT.Algorithms; //加密算法using JWT.Builde ...
分类:其他好文   时间:2020-06-18 16:04:10    阅读次数:75
【译】Announcing Entity Framework Core 5.0 Preview 5
今天我们宣布EF Core 5.0发布第五个预览版。 1 先决条件 EF Core 5.0 的预览版要求 .NET Standard 2.1。这意味着: EF Core 5.0 在 .NET Core 3.1 上运行,不需要 .NET 5。根据 .NET 5 计划的改变,这可能会在未来发生变化。 E ...
分类:其他好文   时间:2020-06-18 01:48:42    阅读次数:65
Thinking in LINQ, Chapter 1, Thinking Functionally
1. 理解函数编程 把函数理解成一个功能的单元,一个大的功能,可以有若干不同的小功能单元组成。 把大的需要,拆成小的功能。 把注意力集中在要做什么,然后如何精确的得到自己要做的。 2. 使用Func<> 示例: Func<int, int> f = x => x + 1; Func<int, int ...
分类:其他好文   时间:2020-06-17 20:36:30    阅读次数:56
工具类--JsonHelper
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using System.Collections.Generic; using System.Data; namespace Co ...
分类:Web程序   时间:2020-06-17 12:38:41    阅读次数:85
多线程使用
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Data; namespace MSCTool { p ...
分类:编程语言   时间:2020-06-16 23:16:15    阅读次数:102
C# TryParse
https://www.cnblogs.com/dream-game/p/5532506.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T... ...
分类:Windows程序   时间:2020-06-16 18:19:49    阅读次数:72
测试环境主机执行脚本
#!/bin/bashecho $USERworkhome=/lvnktest/dygaelasticsearch-service/workjar=${workhome}dygaelasticsearch-service.jarpid=`ps -ef|grep dygaelasticsearch-s ...
分类:其他好文   时间:2020-06-16 16:50:44    阅读次数:73
C#类(二):继承和多态(EduCoder实训题目)
第1关:继承 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace K1 { public abstr ...
分类:Windows程序   时间:2020-06-15 22:58:40    阅读次数:86
21280条   上一页 1 ... 25 26 27 28 29 ... 2128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!