I have problem with the Entity Framework ver. 5 ConnectionString
with ADO.NET Entity Data Model. When I use the generated connectionString
with Username and Password I can't map/browse all the table from my database.
<connectionStrings><add name="myEntities"
connectionString="metadata=res://*/myDbase.csdl
|res://*/myDbase.ssdl|res://*/myDbase.msl;provider=System.Data.SqlClient;
provider connection string="data source=PCName\SQLEXPRESS;
initial catalog=myDbase;user id=myusername;password=2143;MultipleActiveResultSets=True;App=EntityFramework""
providerName="System.Data.EntityClient" />
</connectionStrings>
I need to use Username and Password for the requirements of the server so I can connect my project to the server using the Entity Framework ver. 5. What would be the solution for my problem? Anyone can help me?