Updated all the TODO: comments in the Umbraco.Core project so they are all in the same format. ( // TODO: ) (#4220)
Also moved some of the comments so they are will work better / are not within Code Documentation comments
This commit is contained in:
committed by
Sebastiaan Janssen
parent
43a97185b6
commit
a13a38a482
@@ -32,7 +32,7 @@ namespace Umbraco.Core.Persistence
|
||||
//
|
||||
// works in READ COMMITED, TSQL & SQLCE lock the constraint even if it does not exist, so INSERT is OK
|
||||
//
|
||||
// todo: use the proper database syntax, not this kludge
|
||||
// TODO: use the proper database syntax, not this kludge
|
||||
|
||||
/// <summary>
|
||||
/// Safely inserts a record, or updates if it exists, based on a unique constraint.
|
||||
@@ -81,7 +81,7 @@ namespace Umbraco.Core.Persistence
|
||||
if (poco == null)
|
||||
throw new ArgumentNullException(nameof(poco));
|
||||
|
||||
// todo - NPoco has a Save method that works with the primary key
|
||||
// TODO: NPoco has a Save method that works with the primary key
|
||||
// in any case, no point trying to update if there's no primary key!
|
||||
|
||||
// try to update
|
||||
|
||||
Reference in New Issue
Block a user