Skip to content

Instantly share code, notes, and snippets.

@Guifgr
Last active March 24, 2022 14:47
Show Gist options
  • Save Guifgr/de6d947877a448216efefa92bc023bc2 to your computer and use it in GitHub Desktop.
Save Guifgr/de6d947877a448216efefa92bc023bc2 to your computer and use it in GitHub Desktop.
Verify database connection entity
try
{
using var dbContext = new Context();
Console.WriteLine($"Connected {dbContext.Database.CanConnectAsync().Result}");
}
catch (Exception e)
{
Console.WriteLine($"Error {e.Message}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment