semi-colons
semi-colons

Reputation: 3

MVC 4 System.ArgumentException: Keyword not supported: 'initialcatalog'

Currently having some trouble when running my web app. I go to run it followed by it hitting an unhandled exception.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Keyword not supported: 'initialcatalog'.

Line 42:             catch (Exception ex)
Line 43:             {
Line 44:                 throw ex;
Line 45:             }
Line 46:             finally

Here's my Web.Config Connection string as well.

<connectionStrings>
<add name="ApplicationDb" providerName="System.Data.SqlClient" connectionString="Data Source= \SQLEXPRESS;InitialCatalog=aspnet-MvcApplication5-20130311122440;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-MvcApplication5-20130311122440.mdf" />

Upvotes: 0

Views: 2336

Answers (1)

Rohrbs
Rohrbs

Reputation: 1855

The keyword is actually Initial Catalog <-- notice the space

Upvotes: 2

Related Questions