Пример #1
0
 protected virtual string CreateRequeueQuery(EFCoreStorageConnection storageConnection)
 {
     return($"UPDATE {storageConnection.BaseOptions.Schema}.JobQueue SET FetchedAt = NULL WHERE Id = @id");
 }
Пример #2
0
 protected virtual string CreateRemoveFromQueueQuery(EFCoreStorageConnection storageConnection)
 {
     return($"DELETE FROM {storageConnection.BaseOptions.Schema}.JobQueue WHERE Id = @id");
 }