I hereby claim:
- I am philo on github.
- I am philo (https://keybase.io/philo) on keybase.
- I have a public key whose fingerprint is EC3A 8DD6 7579 7E06 830E 69FF 73BE D2FD 127A 81B5
To claim this, I am signing this object:
// https://learn.microsoft.com/en-us/sql/relational-databases/security/dynamic-data-masking?view=sql-server-ver15 | |
public static class DynamicMaskingMigrationHelperExtension | |
{ | |
// Apply a data masking function to a column that previously had no mask function applied | |
public static void AddDynamicColumnMask(this MigrationBuilder migrationBuilder, string tableName, string columnName, string maskFunction = "default()") | |
{ | |
if(migrationBuilder.IsSqlServer()) | |
{ | |
migrationBuilder.Sql($@"ALTER TABLE [{tableName}] ALTER COLUMN [{columnName}] ADD MASKED WITH(FUNCTION = '{maskFunction}');"); | |
} |
assembly-versioning-scheme: MajorMinorPatchTag | |
assembly-file-versioning-scheme: MajorMinorPatchTag | |
assembly-informational-format: '{MajorMinorPatch}+{BranchName}+{ShortSha}' | |
mode: Mainline | |
branches: | |
release: | |
mode: ContinuousDelivery | |
tag: '' | |
master: | |
regex: (^master$|^origin\/master$|^main$|^origin\/main$) |
namespace Philo.Start.Forwarding | |
{ | |
using System; | |
using System.Linq; | |
using System.Net; | |
using System.Text.RegularExpressions; | |
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.HttpOverrides; | |
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.Options; |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:960edcaf4d44f55e1a754c38821cce109d2e0f20] |
public interface ISmtpMailDeliverySettings | |
{ | |
string Host { get; } | |
int Port { get; } | |
string Username { get; } | |
string Password { get; } | |
bool EnableSSL { get; } | |
} |
I hereby claim:
To claim this, I am signing this object:
public class MyObject { | |
public string Message {get;set; } | |
} | |
public class Program { | |
public static void Main() { | |
MyObject myObj = null; | |
Log(myObj.Message); // this will explode in your face with an exception | |
Log(() => return myObj.Message); // this will actually log another message because we caught the exception when the func was invoked |