refactor: MongoDB支持原生dbName连接字符串解析
#Comment comment Longbow.Data 升级到 2.3.5
This commit is contained in:
parent
7239811f56
commit
abb7b0b436
|
@ -46,7 +46,7 @@
|
||||||
"Widget": "Bootstrap.DataAccess.MongoDB",
|
"Widget": "Bootstrap.DataAccess.MongoDB",
|
||||||
"ProviderName": "MongoDB",
|
"ProviderName": "MongoDB",
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"ba": "mongodb://localhost:27017;Database=BootstrapAdmin"
|
"ba": "mongodb://localhost:27017/BootstrapAdmin"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
"Widget": "Bootstrap.DataAccess.MongoDB",
|
"Widget": "Bootstrap.DataAccess.MongoDB",
|
||||||
"ProviderName": "MongoDB",
|
"ProviderName": "MongoDB",
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"ba": "mongodb://localhost:27017;Database=BootstrapAdmin"
|
"ba": "mongodb://localhost:27017/BootstrapAdmin"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Longbow.Data" Version="2.3.4" />
|
<PackageReference Include="Longbow.Data" Version="2.3.5" />
|
||||||
<PackageReference Include="Longbow.Logging" Version="2.2.12" />
|
<PackageReference Include="Longbow.Logging" Version="2.2.12" />
|
||||||
<PackageReference Include="Bootstrap.Security.Mvc" Version="2.2.13" />
|
<PackageReference Include="Bootstrap.Security.Mvc" Version="2.2.13" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
"ProviderName": "MongoDB",
|
"ProviderName": "MongoDB",
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"ba": "mongodb://localhost:27017;Database=BootstrapAdmin",
|
"ba": "mongodb://localhost:27017;Database=BootstrapAdmin",
|
||||||
"client": "mongodb://localhost:27017;Database=BootstrapClient"
|
"client": "mongodb://localhost:27017/BootstrapClient"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
"Widget": "Bootstrap.Client.DataAccess.MongoDB",
|
"Widget": "Bootstrap.Client.DataAccess.MongoDB",
|
||||||
"ProviderName": "MongoDB",
|
"ProviderName": "MongoDB",
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"ba": "mongodb://localhost:27017;Database=BootstrapAdmin"
|
"ba": "mongodb://localhost:27017/BootstrapAdmin"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Bootstrap.Security.DataAccess" Version="2.2.12" />
|
<PackageReference Include="Bootstrap.Security.DataAccess" Version="2.2.12" />
|
||||||
<PackageReference Include="Longbow.Data" Version="2.3.4" />
|
<PackageReference Include="Longbow.Data" Version="2.3.5" />
|
||||||
<PackageReference Include="Longbow.Logging" Version="2.2.12" />
|
<PackageReference Include="Longbow.Logging" Version="2.2.12" />
|
||||||
<PackageReference Include="Longbow.PetaPoco" Version="1.0.2" />
|
<PackageReference Include="Longbow.PetaPoco" Version="1.0.2" />
|
||||||
<PackageReference Include="Longbow.Security.Cryptography" Version="1.3.0" />
|
<PackageReference Include="Longbow.Security.Cryptography" Version="1.3.0" />
|
||||||
|
|
Loading…
Reference in New Issue