EntityFramework Database connection string Reuse

Source: Internet
Author: User

EntityFramework database connection string reuse:
<connectionStrings>
<add name= "Legalentities"
Connectionstring= "
Resource mode, plus file mode
METADATA=RES://*/LEGALDB.CSDL|RES://*/LEGALDB.SSDL|RES://*/LEGALDB.MSL;
Provider=system.data.sqlclient;
Provider Connection string=&quot;
Gets the name of the instance of SQL Server to connect to, with a return type of string
Data source=***;
Initial catalog=***;
User id=***;
password=***;
Multipleactiveresultsets=true;
app=entityframework&quot; "
Providername= "System.Data.EntityClient"/>
</connectionStrings>
Create your own entityconnection and pass it on to ObjectContext.
Public Cnblogsobjectcontext ()
: Base (Buildconnection ("Cnblogsdb"), "Club_cnblogscontainer")
{
}

Static EntityConnection buildconnection (String connectionstringname)
{
String connectionString = Configurationmanager.connectionstrings[connectionstringname]. ConnectionString;
MetadataWorkspace workspace = new MetadataWorkspace (new string[] {"res://*/"},
New assembly[] {assembly.getexecutingassembly ()});

SqlConnection SqlConnection = new SqlConnection (connectionString);
return new EntityConnection (workspace, sqlConnection);
}

EntityFramework Database connection string Reuse

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.