// Note: There is no need to invoke these methods on the UI thread,// because we can safely set the color for a label from any thread.await _sevenSegmentTimer.FadeSeparatorsInAsync().ConfigureAwait(false); await _sevenSegmentTimer.FadeSeparatorsOutAsync().ConfigureAwait(false); } } When we...
awaitSendCloseFrameAsync(closeStatus,statusDescription,cancellationToken).ConfigureAwait(false); // If we already received a close frame, since we've now also sent one, we're now closed. lock(StateUpdateLock) { Debug.Assert(_sentCloseFrame); ...
(message).ConfigureAwait(false); } catch (SmtpException e) { SemanticLoggingEventSource.Log.CustomSinkUnhandledFault( "SMTP error sending email: " + e.Message); } catch (InvalidOperationException e) { SemanticLoggingEventSource.Log.CustomSinkUnhandledFault( "Configuration error sending email: " + ...
configurationBuilder .DefaultTypeMapping<string>() .IsUnicode(false); This is rarely needed, but can be useful if a type is used in query in a way that is uncorrelated with any mapped property of the model.Note See Announcing Entity Framework Core 6.0 Preview 6: Configure Conventions on the...
(message).ConfigureAwait(false); } catch (SmtpException e) { SemanticLoggingEventSource.Log.CustomSinkUnhandledFault( "SMTP error sending email: " + e.Message); } catch (InvalidOperationException e) { SemanticLoggingEventSource.Log.CustomSinkUnhandledFault( "Configuration error sending email: " + ...
configurationBuilder .DefaultTypeMapping<string>() .IsUnicode(false); This is rarely needed, but can be useful if a type is used in query in a way that is uncorrelated with any mapped property of the model.Note See Announcing Entity Framework Core 6.0 Preview 6: Configure Conventions on the...
我们在5.0 版本中更改了 EF Core 代码,以在所有 await 异步代码的位置将 Task.ConfigureAwait 设置为 false。 通常,这是使用 EF Core 时的更好选择。 但是,SaveChangesAsync 是一种特殊情况,因为在完成异步数据库操作后,EF Core 会将生成的值设置为跟踪的实体。 然后,这些更改可能会触发通知,例如,通知可能必须在...
5.0 リリースで EF Core コードを変更し、非同期コードの await を実行するすべての場所で、Task.ConfigureAwait がfalse に設定されるようにしました。 これは、通常、EF Core の使用に適した選択肢です。 ただし、EF Core では、非同期データベース操作が完了した後に、生成された値を追跡対象...
我們已 在5.0 版本中 變更EF Core 程式碼,以在非同步程式碼的所有位置 await 設定Task.ConfigureAwait 為false。 這通常是 EF Core 使用量的較佳選擇。 不過,這是一個特殊案例, SaveChangesAsync 因為EF Core 會在非同步資料庫作業完成之後,將產生的值設定為追蹤的實體。 然後,這些變更可能會觸發通知,例如,可能...
5.0 릴리스의 EF Core 코드를 변경하여 await 비동기 코드가 있는 모든 위치에서 Task.ConfigureAwait을 false로 설정했습니다. 이는 일반적으로 EF Core 사용에 더 적합합니다. 그러나 비동기 데이...