Skip to content

Instantly share code, notes, and snippets.

@gethari
Created August 13, 2019 05:13
Show Gist options
  • Save gethari/680cd69ef134412b364f031746fbe4dc to your computer and use it in GitHub Desktop.
Save gethari/680cd69ef134412b364f031746fbe4dc to your computer and use it in GitHub Desktop.
public List<StageProperty> WithDapper(Guid id)
{
List<Property> result;
using (var connection = new SqlConnection(ConnectionString))
{
result = connection.QueryAsync<Property>(queryString, new
{
Id = id
}).Result.ToList();
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment