Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
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
Dapper
Commits
a5256b7d
Commit
a5256b7d
authored
Jun 03, 2019
by
Jonathan Channon
Committed by
Marc Gravell
Jun 03, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove .NET 45 in XML docs (#1271)
parent
d19d6012
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
38 deletions
+38
-38
SqlMapperExtensions.Async.cs
Dapper.Contrib/SqlMapperExtensions.Async.cs
+5
-5
Database.Async.cs
Dapper.Rainbow/Database.Async.cs
+1
-1
SqlMapper.Async.cs
Dapper/SqlMapper.Async.cs
+32
-32
No files found.
Dapper.Contrib/SqlMapperExtensions.Async.cs
View file @
a5256b7d
...
@@ -12,7 +12,7 @@ namespace Dapper.Contrib.Extensions
...
@@ -12,7 +12,7 @@ namespace Dapper.Contrib.Extensions
public
static
partial
class
SqlMapperExtensions
public
static
partial
class
SqlMapperExtensions
{
{
/// <summary>
/// <summary>
/// Returns a single entity by a single id from table "Ts" asynchronously using
.NET 4.5
Task. T must be of interface type.
/// Returns a single entity by a single id from table "Ts" asynchronously using Task. T must be of interface type.
/// Id must be marked with [Key] attribute.
/// Id must be marked with [Key] attribute.
/// Created entity is tracked/intercepted for changes and used by the Update() extension.
/// Created entity is tracked/intercepted for changes and used by the Update() extension.
/// </summary>
/// </summary>
...
@@ -127,7 +127,7 @@ public static partial class SqlMapperExtensions
...
@@ -127,7 +127,7 @@ public static partial class SqlMapperExtensions
}
}
/// <summary>
/// <summary>
/// Inserts an entity into table "Ts" asynchronously using
.NET 4.5
Task and returns identity id.
/// Inserts an entity into table "Ts" asynchronously using Task and returns identity id.
/// </summary>
/// </summary>
/// <typeparam name="T">The type being inserted.</typeparam>
/// <typeparam name="T">The type being inserted.</typeparam>
/// <param name="connection">Open SqlConnection</param>
/// <param name="connection">Open SqlConnection</param>
...
@@ -198,7 +198,7 @@ public static partial class SqlMapperExtensions
...
@@ -198,7 +198,7 @@ public static partial class SqlMapperExtensions
}
}
/// <summary>
/// <summary>
/// Updates entity in table "Ts" asynchronously using
.NET 4.5
Task, checks if the entity is modified if the entity is tracked by the Get() extension.
/// Updates entity in table "Ts" asynchronously using Task, checks if the entity is modified if the entity is tracked by the Get() extension.
/// </summary>
/// </summary>
/// <typeparam name="T">Type to be updated</typeparam>
/// <typeparam name="T">Type to be updated</typeparam>
/// <param name="connection">Open SqlConnection</param>
/// <param name="connection">Open SqlConnection</param>
...
@@ -269,7 +269,7 @@ public static partial class SqlMapperExtensions
...
@@ -269,7 +269,7 @@ public static partial class SqlMapperExtensions
}
}
/// <summary>
/// <summary>
/// Delete entity in table "Ts" asynchronously using
.NET 4.5
Task.
/// Delete entity in table "Ts" asynchronously using Task.
/// </summary>
/// </summary>
/// <typeparam name="T">Type of entity</typeparam>
/// <typeparam name="T">Type of entity</typeparam>
/// <param name="connection">Open SqlConnection</param>
/// <param name="connection">Open SqlConnection</param>
...
@@ -326,7 +326,7 @@ public static partial class SqlMapperExtensions
...
@@ -326,7 +326,7 @@ public static partial class SqlMapperExtensions
}
}
/// <summary>
/// <summary>
/// Delete all entities in the table related to the type T asynchronously using
.NET 4.5
Task.
/// Delete all entities in the table related to the type T asynchronously using Task.
/// </summary>
/// </summary>
/// <typeparam name="T">Type of entity</typeparam>
/// <typeparam name="T">Type of entity</typeparam>
/// <param name="connection">Open SqlConnection</param>
/// <param name="connection">Open SqlConnection</param>
...
...
Dapper.Rainbow/Database.Async.cs
View file @
a5256b7d
...
@@ -189,7 +189,7 @@ public Task<int> UpdateAsync(TId id, dynamic data)
...
@@ -189,7 +189,7 @@ public Task<int> UpdateAsync(TId id, dynamic data)
_connection
.
QueryAsync
(
sql
,
map
,
param
as
object
,
transaction
,
buffered
,
splitOn
,
commandTimeout
);
_connection
.
QueryAsync
(
sql
,
map
,
param
as
object
,
transaction
,
buffered
,
splitOn
,
commandTimeout
);
/// <summary>
/// <summary>
/// Execute a query asynchronously using
.NET 4.5
Task.
/// Execute a query asynchronously using Task.
/// </summary>
/// </summary>
/// <param name="sql">The SQL to execute.</param>
/// <param name="sql">The SQL to execute.</param>
/// <param name="param">The parameters to use.</param>
/// <param name="param">The parameters to use.</param>
...
...
Dapper/SqlMapper.Async.cs
View file @
a5256b7d
This diff is collapsed.
Click to expand it.
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