ef6转化为efcore 1.ef6 sql service先修改为 ef6 pgsql 1.1 安装 EntityFramework6.Npgsql 包 1.2 修改config 文件中的连接串 新建一个pagsql的数据库 JustTest <connectionStrings> <add na ...
分类:
数据库 时间:
2020-11-27 11:43:09
阅读次数:
13
配置远程Python解释器 选择File-->Settings-->Project: xxxx-->Project Interpreter, (xxxx是项目根目录), 然后在右边, 点击小齿轮设置, 点击"Add Remote", 勾选SSH Credentials, 配置相关信息: Host: ...
分类:
其他好文 时间:
2020-11-27 11:35:08
阅读次数:
8
# 模板1 class LayerChart(TopLevelMixin, _EncodingMixin, core.TopLevelLayerSpec): def __init__(self, data=Undefined, layer=(), **kwargs): for spec in lay ...
分类:
编程语言 时间:
2020-11-27 11:30:17
阅读次数:
11
闭包是什么? <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div> <button id="father" onclick="add()">计数 ...
分类:
其他好文 时间:
2020-11-27 11:18:25
阅读次数:
9
代码如下: <style> *{ margin: 0; padding: 0; } html,body{ width: 100%; height: 100%; } body{ background:#1e1e1f; overflow:hidden; } .box{ width: 100%; heig ...
分类:
其他好文 时间:
2020-11-27 10:58:16
阅读次数:
6
跟着网上的步骤走就好了,这里就记录一个过程: 先加个docker的源 1 curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add - 2 3 echo 'deb htt ...
分类:
其他好文 时间:
2020-11-27 10:55:57
阅读次数:
5
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes conta ...
分类:
其他好文 时间:
2020-11-26 15:14:07
阅读次数:
5
加法 add() 减法subtract() 乘法divide() 除法 divide() 绝对值 ads() ...
分类:
其他好文 时间:
2020-11-26 15:07:37
阅读次数:
11
Flask是一个基于Python开发的微型web框架 使用Flask实现简单的restful api 安装 pip install flask eg: from flask import Flask app = Flask(__name__) @app.route('/') def hello(): ...
select * from v$sql select row_number() over (order by a.username, a.client_info, a.terminal) as id , a.username, a.sid, a.serial# as serial_id, a.cli ...
分类:
数据库 时间:
2020-11-26 14:51:52
阅读次数:
9