View efcore-combine-logs-sql.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task InsertTweetStoreProc(string username, string message, CancellationToken ct = default) | |
{ | |
using (_logger.BeginScope(new Dictionary<string, object> { { "EFQueries", "GetTweetsLog" } })) | |
{ | |
_ = await _context.Database | |
.ExecuteSqlRawAsync( | |
"InsertTweet @Username, @Message", | |
new SqlParameter("Username", username), | |
new SqlParameter("Message", message)); | |
} |
View seq-get-all-ef-core-queries.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@EventType = 0xE9507561 |
View execute-store-proc-efcore-5.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task InsertTweetStoreProc(string username, string message, CancellationToken ct = default) | |
{ | |
using (_logger.BeginScope(new Dictionary<string, object> { { "EFQueries", "InsertTweetStoreProc" } })) | |
{ | |
_ = await _context.Database | |
.ExecuteSqlRawAsync( | |
"InsertTweet @Username, @Message", | |
new SqlParameter("Username", username), | |
new SqlParameter("Message", message)); | |
} |
View create-custom-form-recognizer.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[Parameter()] | |
[ValidateNotNullOrEmpty()] | |
[string] $ResourceGroup = $null, | |
[Parameter()] | |
[ValidateNotNullOrEmpty()] | |
[string] $ResourceLocation = 'EastUS', | |
# F0 is free and S0 is paid SKU |
View efcore-combine-logs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IEnumerable<Tweet>> GetTweetsWithExtraLogs(CancellationToken ct = default) | |
{ | |
using (_logger.BeginScope(new Dictionary<string, object> { { "EFQueries", "GetTweetsLog" } })) | |
{ | |
return await _context.Tweets | |
.TagWith("GetTweets + LogContext") | |
.ToListAsync(ct) | |
.ConfigureAwait(false); | |
} | |
} |
View efcore-log-scope-store-procs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Task InsertTweetStoreProc(string username, string message, CancellationToken ct = default) | |
{ | |
using (_logger.BeginScope(new Dictionary<string, object> { { "EFQueries", "InsertTweetStoreProc" } })) | |
{ | |
_ = _context.Tweets | |
.FromSqlRaw( | |
"InsertTweet @Username, @Message", | |
new SqlParameter("Username", username), | |
new SqlParameter("Message", message)) | |
// A hack to make STORE PROC work when they don't return anything. |
View efcore-log-scope-insert.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task InsertTweet(string username, string message, CancellationToken ct = default) | |
{ | |
using (_logger.BeginScope(new Dictionary<string, object> { { "EFQueries", "InsertTweet" } })) | |
{ | |
_context.Tweets.Add(new Tweet | |
{ | |
Username = username, | |
Message = message, | |
CreatedUtc = DateTime.UtcNow | |
}); |
View efcore-indirect-log-scope-query.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (_logger.BeginScope(new Dictionary<string, object> { { "EFQueries", "GetTweets" } })) | |
{ | |
var tweets = await _twitterService.GetTweets(ct); | |
} | |
// Same query as before. | |
public async Task<IEnumerable<Tweet>> GetTweets(CancellationToken ct = default) | |
{ | |
return await _context.Tweets | |
.ToListAsync(ct) |
View efcore-query-tag.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<IEnumerable<Tweet>> GetTweetsWithQueryTags(CancellationToken ct = default) | |
{ | |
return await _context.Tweets | |
.TagWith("GetTweets") | |
.ToListAsync(ct) | |
.ConfigureAwait(false); | |
} |
View insert-entity-no-log-scope.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task InsertTweetWithoutLogScope(string username, string message, CancellationToken ct = default) | |
{ | |
_context.Tweets.Add(new Tweet | |
{ | |
Username = username, | |
Message = message | |
}); | |
await _context.SaveChangesAsync(ct); | |
} |
NewerOlder