Commit a5256b7d authored by Jonathan Channon's avatar Jonathan Channon Committed by Marc Gravell

Remove .NET 45 in XML docs (#1271)

parent d19d6012
...@@ -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>
......
...@@ -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>
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment