Skip to content

Instantly share code, notes, and snippets.

@mgravell
Created October 17, 2023 12:26
Show Gist options
  • Save mgravell/c25035ad5e66dd9947b5f07cb55dc22e to your computer and use it in GitHub Desktop.
Save mgravell/c25035ad5e66dd9947b5f07cb55dc22e to your computer and use it in GitHub Desktop.
var sb = new StringBuilder("select name from person");
if (!string.IsNullOrWhiteSpace(name))
{
sb.Append(" where name = @name");
}
var sql = sb.ToString();
foreach (var row in connection.Query<string>(sql, new { name}))
{
Console.WriteLine(row);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment