ps -ef 和ps -aux:https://blog.csdn.net/a12345555555/article/details/72770789,看进程和父进程id和command用ef,看cpu内存占用和aux ...
分类:
其他好文 时间:
2020-03-05 22:29:48
阅读次数:
64
MVC+EF 理解和实现仓储模式和工作单元模式 原文:Understanding Repository and Unit of Work Pattern and Implementing Generic Repository in ASP.NET MVC using Entity Framework ...
分类:
Web程序 时间:
2020-03-05 20:50:16
阅读次数:
95
说明:一个用C#编写的WebAPI操作类,只写了Get Post 部分。 using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.L ...
以上是代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication ...
分类:
编程语言 时间:
2020-03-05 00:49:21
阅读次数:
87
1、定义模型 示例:学生和桌子的一对一关系:每个学生需要对应一个桌位信息,桌位信息不用包含学生信息 public class Desk { public int Id { get; set; } public string Name { get; set; } public Student Stud ...
分类:
其他好文 时间:
2020-03-04 14:57:48
阅读次数:
134
C#史上最简单读写xml文件方式,创建控制台应用程序赋值代码,就可以运行,需要改动,请自行调整 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; ...
记录https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/concepts/linq/linq-and-file-directories的学习 查询具有指定扩展名的文件 (SearchOption.AllDirectorie ...
分类:
其他好文 时间:
2020-03-04 00:20:52
阅读次数:
96
一直是个痛点,这次解决了, ugui通用 using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; /// <summary> /// UGUI页签管理器 /// ...
分类:
其他好文 时间:
2020-03-02 23:21:00
阅读次数:
112
1、登录过程中报以下错误 2、分析 提示redis连接异常,意味着后台redis服务没起 3、解决 首先ps -ef |grep redis 发现redis果然没起 启动redis: 首先进入redis目录下: cd /usr/local/redis-5.0.5/ 启动redis ok了 ...
分类:
其他好文 时间:
2020-03-02 20:38:32
阅读次数:
167
--AdminDal.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data; //包含Ado.Net的各类数据对象;using System.Data ...
分类:
数据库 时间:
2020-03-02 20:25:19
阅读次数:
80