Answers for "connection string entity framework core code first"

C#
0

c# entity framework code first connection string

<connectionStrings>
    <add name="SchoolDB"
    connectionString="Data Source=Your Server Name ;Initial Catalog=SchoolDB;Integrated Security=false ; user id =sa ; password =*** "
    providerName="System.Data.SqlClient"/>
  </connectionStrings>
Posted by: Guest on January-14-2021
0

ef core connection string

<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <connectionStrings>
    <add name="BloggingDatabase"
         connectionString="Server=(localdb)mssqllocaldb;Database=Blogging;Trusted_Connection=True;" />
  </connectionStrings>
</configuration>
Posted by: Guest on October-22-2020

Code answers related to "connection string entity framework core code first"

C# Answers by Framework

Browse Popular Code Answers by Language