Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CAP
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
CAP
Commits
83f22154
Commit
83f22154
authored
Aug 18, 2017
by
Savorboard
Committed by
GitHub
Aug 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update configuration
add supported new database store provider description
parent
e76a4299
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
README.md
README.md
+6
-1
No files found.
README.md
View file @
83f22154
...
@@ -44,10 +44,13 @@ If your Message Queue is using RabbitMQ, you can:
...
@@ -44,10 +44,13 @@ If your Message Queue is using RabbitMQ, you can:
PM> Install-Package DotNetCore.CAP.RabbitMQ
PM> Install-Package DotNetCore.CAP.RabbitMQ
```
```
CAP
provides EntityFramework as default database store extension (The MySQL version is under development)
:
CAP
supported SqlServer, MySql, PostgreSql as message store extension
:
```
```
//Select a database provider you are using
PM> Install-Package DotNetCore.CAP.SqlServer
PM> Install-Package DotNetCore.CAP.SqlServer
PM> Install-Package DotNetCore.CAP.MySql
PM> Install-Package DotNetCore.CAP.PostgreSql
```
```
### Configuration
### Configuration
...
@@ -69,6 +72,8 @@ public void ConfigureServices(IServiceCollection services)
...
@@ -69,6 +72,8 @@ public void ConfigureServices(IServiceCollection services)
// If you are using Dapper,you need to add the config:
// If you are using Dapper,you need to add the config:
x
.
UseSqlServer
(
"Your ConnectionStrings"
);
x
.
UseSqlServer
(
"Your ConnectionStrings"
);
//x.UseMySql("Your ConnectionStrings");
//x.UsePostgreSql("Your ConnectionStrings");
// If your Message Queue is using RabbitMQ you need to add the config:
// If your Message Queue is using RabbitMQ you need to add the config:
x
.
UseRabbitMQ
(
"localhost"
);
x
.
UseRabbitMQ
(
"localhost"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment