You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypetwhenArray.Exists(AuthorizedNonStringTypes, at =>at==t)=>builder.AddValue(Convert.ToString(property.GetValue(@object),CultureInfo.InvariantCulture)!),
/// Insert data into the table asynchronously specified by the <paramref name="tableName"/> argument. The row
65
+
/// to insert are represents by objects (or anonymous objects) which the property name must match the
66
+
/// the column name.
67
+
/// </summary>
68
+
/// <typeparam name="T">Type of the object which contains the data to insert in the table.</typeparam>
69
+
/// <param name="database">SQL Server database which contains the table where the data will be inserted.</param>
70
+
/// <param name="tableName">SQL table where the data will be inserted.</param>
71
+
/// <param name="objects">Set of object which represents the row to insert. Each object must have property which are mapped to the column to insert.</param>
72
+
/// <returns>A <see cref="Task"/> which represents the asynchronous operation and contains the number of the rows inserted.</returns>
/// Insert data into the table asynchronously specified by the <paramref name="tableName"/> argument. The row
80
+
/// to insert are represents by objects (or anonymous objects) which the property name must match the
81
+
/// the column name.
82
+
/// </summary>
83
+
/// <typeparam name="T">Type of the object which contains the data to insert in the table.</typeparam>
84
+
/// <param name="database">SQL Server database which contains the table where the data will be inserted.</param>
85
+
/// <param name="tableName">SQL table where the data will be inserted.</param>
86
+
/// <param name="disableIdentityInsert"><see langword="true"/> to disable auto incrementation of the <c>IDENTITY</c> column. In this case, the object must contains explicitely the value of the <c>IDENTITY</c>
87
+
/// column to insert.</param>
88
+
/// <param name="objects">Set of object which represents the row to insert. Each object must have property which are mapped to the column to insert.</param>
89
+
/// <returns>A <see cref="Task"/> which represents the asynchronous operation and contains the number of the rows inserted.</returns>
TypetwhenArray.Exists(AuthorizedNonStringTypes, at =>at==t)=>builder.AddValue(Convert.ToString(property.GetValue(@object),CultureInfo.InvariantCulture)!),
0 commit comments