Skip to content

Commit

Permalink
xml cref fixes for SaveAsync doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ste1io committed Sep 20, 2023
1 parent 172339e commit aa2227a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PetaPoco/IAlterPocoAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public interface IAlterPocoAsync
Task SaveAsync(string tableName, string primaryKeyName, object poco);

/// <remarks>
/// Performs an <see cref="Insert(object)"/> operation if the POCO is new (as determined by <see cref="IsNew(object)"/>), and an <see cref="Update(object)"/> operation otherwise.
/// Performs an <see cref="InsertAsync(object)"/> operation if the POCO is new (as determined by <see cref="IAlterPoco.IsNew(object)"/>), and an <see cref="UpdateAsync(object)"/> operation otherwise.
/// <para>If an Insert operation is performed, and a mapped primary key column is auto-incrementing, the primary key property of the POCO will be updated with the new record's auto-incremented ID.</para>
/// </remarks>
/// <inheritdoc cref="SaveAsync(CancellationToken, string, string, object)"/>
Expand All @@ -263,7 +263,7 @@ public interface IAlterPocoAsync
/// Asynchronously saves the specified POCO to the database by performing either an insert or an update operation, as appropriate.
/// </summary>
/// <remarks>
/// Performs an <see cref="Insert(string, string, object)"/> operation if the POCO is new (as determined by <see cref="IsNew(string, object)"/>), and an <see cref="Update(string, string, object)"/> operation otherwise.
/// Performs an <see cref="InsertAsync(string, string, object)"/> operation if the POCO is new (as determined by <see cref="IAlterPoco.IsNew(string, object)"/>), and an <see cref="UpdateAsync(string, string, object)"/> operation otherwise.
/// <para>If an Insert operation is performed, and <paramref name="primaryKeyName"/> represents an auto-incrementing column, the primary key property of the POCO will be updated with the new record's auto-incremented ID.</para>
/// </remarks>
/// <param name="cancellationToken">A cancellation token that can be used to cancel the operation.</param>
Expand Down

0 comments on commit aa2227a

Please sign in to comment.