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
bbc98733
Commit
bbc98733
authored
Apr 25, 2018
by
Savorboard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify the error comments.
parent
67060b7e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
CapPublisherBase.cs
src/DotNetCore.CAP/Abstractions/CapPublisherBase.cs
+1
-1
ICapPublisher.cs
src/DotNetCore.CAP/ICapPublisher.cs
+2
-2
ICapSubscribe.cs
src/DotNetCore.CAP/ICapSubscribe.cs
+1
-1
No files found.
src/DotNetCore.CAP/Abstractions/CapPublisherBase.cs
View file @
bbc98733
...
...
@@ -132,7 +132,7 @@ namespace DotNetCore.CAP.Abstractions
{
throw
new
InvalidOperationException
(
"If you are using the EntityFramework, you need to configure the DbContextType first."
+
" otherwise you need to use overloaded method with IDb
Connection and IDb
Transaction."
);
" otherwise you need to use overloaded method with IDbTransaction."
);
}
}
...
...
src/DotNetCore.CAP/ICapPublisher.cs
View file @
bbc98733
...
...
@@ -15,7 +15,7 @@ namespace DotNetCore.CAP
/// (EntityFramework) Asynchronous publish a object message.
/// <para>
/// If you are using the EntityFramework, you need to configure the DbContextType first.
/// otherwise you need to use overloaded method with
IDbConnection and
IDbTransaction.
/// otherwise you need to use overloaded method with IDbTransaction.
/// </para>
/// </summary>
/// <typeparam name="T">The type of content object.</typeparam>
...
...
@@ -28,7 +28,7 @@ namespace DotNetCore.CAP
/// (EntityFramework) Publish a object message.
/// <para>
/// If you are using the EntityFramework, you need to configure the DbContextType first.
/// otherwise you need to use overloaded method with IDb
Connection and IDb
Transaction.
/// otherwise you need to use overloaded method with IDbTransaction.
/// </para>
/// </summary>
/// <typeparam name="T">The type of content object.</typeparam>
...
...
src/DotNetCore.CAP/ICapSubscribe.cs
View file @
bbc98733
...
...
@@ -4,7 +4,7 @@
namespace
DotNetCore.CAP
{
/// <summary>
/// An empty interface, which is used to mark the current class have a CAP methods.
/// An empty interface, which is used to mark the current class have a CAP
subscriber
methods.
/// </summary>
public
interface
ICapSubscribe
{
...
...
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