using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
1.run maven->clean install 2.在Target目录下就可以找到jar 包 1.在系统var目录下创建btn文件夹 # cd /var # mkdir btn 2.编写文件start.sh并执行 # sh start.sh 3.安装完成后,确认有如下进程 # ps -ef | ...
分类:
编程语言 时间:
2021-06-29 16:12:57
阅读次数:
0
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace DesignPatt ...
分类:
其他好文 时间:
2021-06-25 17:21:57
阅读次数:
0
本文主要介绍在.NET Core环境下,通过donet命令,使用Code First方式,用EF Core(Entity Framework Core) 创建生成数据库方法示例代码。Code First方法使您能够在代码中定义实体模型,从模型创建数据库,然后将数据添加到数据库。应用程序添加的数据也由 ...
分类:
数据库 时间:
2021-06-24 18:07:14
阅读次数:
0
ps -ef UID 指进程的所有者; PID 是进程的唯一标识; PPID 是进程的父进程 ID; C 是 CPU 的利用率(就是 CPU 占用); STIME 是开始时间; TTY 是进程所在的 TTY,如果没有 TTY 就是 ?号; TIME; CMD 是进程启动时的命令,如果不是一个 She ...
分类:
其他好文 时间:
2021-06-23 17:06:46
阅读次数:
0
一、EF(Entity Framework)简介 1.ORM:Object Relation Mapping,用操作对象的方法来操作数据库 2.ORM工具有很多:Dapper、PetaPoco、NHibernate,其中用的最多的还是微软官方的Entity Framework 3.EF底层仍然是对A ...
分类:
Web程序 时间:
2021-06-21 20:39:11
阅读次数:
0
一、常用命令 1、关闭所有java进程命令: ps -ef | grep java | grep -v grep | awk '{print $2}' | xargs kill -9 2、批量文本操作 替换字符串:sed -i 's/原字符串/新字符串/g' /home/1.txt 删除字符串:se ...
分类:
系统相关 时间:
2021-06-20 18:10:37
阅读次数:
0
首先先搭建框架,mvc是UI层,加一个接口层,然后一个实现层,EF做为数据层 将所有要实例化的对象交给IOC容器来实例化 先引入NuGet引入unity包 然后写一个类来初始化IOC容器:ObjectFactory.cs /// <summary> /// 初始化IOC容器 /// </summar ...
分类:
Web程序 时间:
2021-06-18 18:56:12
阅读次数:
0