using ado.net tipically we need to define a connectionstring to create a sqlconnection object, and if we use the entity framework, we have to dedine a connectionstring too.
is threre any way to get the specific provider connectionstring used by entity framework?
Assuming that originally on ado.net we define the CS like:
"Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;"
and Entityframework should translate their CS format on something like that, is it possible to obtain this?
what i pretend is to know if is possible to get the specific provider connectionstring generated by EF?
How can i convert a entityframework connectionstring on a sqlserver connectionstring?
string entityConnectionString = ...
var builder = new EntityConnectionStringBuilder(entityConnectionString);
string providerConnectionString = builder.ProviderConnectionString;
Found the solution:
System.Data.EntityClient.EntityConnection c = (System.Data.EntityClient.EntityConnection)EFDBcontext.Connection;
String S = c.StoreConnection.ConnectionString;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With