From fa468a5f958b85ba984270aa6ae0563f218915f7 Mon Sep 17 00:00:00 2001 From: Marc Gravell Date: Wed, 15 Nov 2023 17:02:01 +0000 Subject: [PATCH] docs typo --- docs/gettingstarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 8d221023..4730c5d4 100644 --- a/docs/gettingstarted.md +++ b/docs/gettingstarted.md @@ -147,7 +147,7 @@ To get the full benefit of the analyzer tools, make sure that it knows which SQL change our example to use `SqlConnection`: ``` csharp -public static Product GetProduct(DbConnection connection, int productId) => connection.QueryFirst( +public static Product GetProduct(SqlConnection connection, int productId) => connection.QueryFirst( "select * from Production.Product where ProductId=@productId", new { productId }); ```