Skip to content

Instantly share code, notes, and snippets.

View jernejk's full-sized avatar

Jernej Kavka (JK) [SSW • Microsoft MVP] jernejk

View GitHub Profile
@EventType = 0xE9507561
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));
}
@jernejk
jernejk / create-custom-form-recognizer.ps1
Last active July 19, 2021 08:16
Create Custom Form Recognizer script
param(
[Parameter()]
[ValidateNotNullOrEmpty()]
[string] $ResourceGroup = $null,
[Parameter()]
[ValidateNotNullOrEmpty()]
[string] $ResourceLocation = 'EastUS',
# F0 is free and S0 is paid SKU
@jernejk
jernejk / TagWithExtensions.cs
Created January 17, 2024 01:03
Custom TagWithContext to extend EF Core TagWith with caller class name, method and tag/purpose (optional)
public static class TagWithExtensions
{
public static IQueryable<T> TagWithContext<T>(this IQueryable<T> queryable, string? message = "", [CallerFilePath] string callerFileName = "", [CallerMemberName] string callerName = "")
{
string logScopeName = GenerateLogScopeName(message, callerFileName, callerName);
return queryable.TagWith(logScopeName);
}
private static string GenerateLogScopeName(string? message = null, string callerFileName = "", string callerName = "")
{