From f6735f7a7d2be2026c09531bb7679109a8664088 Mon Sep 17 00:00:00 2001 From: Mark J Price Date: Thu, 27 Oct 2022 19:35:14 +0100 Subject: [PATCH] Update README.md --- docs/sql-server/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/sql-server/README.md b/docs/sql-server/README.md index 00d9486..1500454 100644 --- a/docs/sql-server/README.md +++ b/docs/sql-server/README.md @@ -136,6 +136,11 @@ public class Northwind : DbContext "Initial Catalog=Northwind;" + "Integrated Security=true;" + "MultipleActiveResultSets=true;"; + + ConsoleColor previousColor = ForegroundColor; + ForegroundColor = ConsoleColor.DarkYellow; + WriteLine($"Connection: {connection}"); + ForegroundColor = previousColor; optionsBuilder.UseSqlServer(connection); }