Database.json 689 B

12345678910111213141516
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/net6/schemas/v3/furion-schema.json",
  3. "DbConnection": {
  4. // 具体配置见SqlSugar官网(第一个为默认库,不需要设置ConfigId)
  5. "ConnectionConfigs": [
  6. {
  7. "DbType": "Sqlite", // MySql、SqlServer、Sqlite、Oracle、PostgreSQL、Dm、Kdbndp、Oscar、MySqlConnector、Access
  8. "ConnectionString": "DataSource=./Admin.NET.db",
  9. "EnableInitDb": true, // 启用库表初始化
  10. "EnableDiffLog": false, // 启用库表差异日志
  11. "EnableUnderLine": true // 启用驼峰转下划线
  12. }
  13. ]
  14. }
  15. }