摘要:
@ECHO OFF setlocal EnableDelayedExpansion title 添加服务配置 PUSHD %~DP0 & cd /d "%~dp0" %1 %2 mshta vbscript:createobject("shell.application").shellexecute 阅读全文
随笔档案-2022年08月
用自定义属性实现复合主键的思路
2022-08-20 12:50 by Lecone.JY.HU, 560 阅读, 收藏, 编辑
摘要:
使用efcore的时候,使用复合主键来表示实体,很多官网推荐 [Key("",Order)] 这种方式来实现,但是很大程度上会报错。 “the entity type '' has multiple properties with the [Key] attribute. Composite pri 阅读全文
vnext+sqlite3+sqlcipher
2022-08-16 15:00 by Lecone.JY.HU, 107 阅读, 收藏, 编辑
摘要:
1.在abp.io网站上创建项目并选择数据库为sqlite。 2.默认情况下,sqlite是不加密的。 3.打开appsettings.json "ConnectionStrings": { "Default": "Data Source=de.db;//You need to change to 阅读全文