Converting entity connection to localEntity Framework vs LINQ to SQLWhy does Entity Framework over SQL Express ignore timeout?Connection String Using a Domain User?Setting up dynamic connection string for log4netMax pool size reached in while using threading in c# codeRemote server claims table doesn't existEntity Framework Connection String “The Server was not found”Using elastic beanstalk to deploy .net web app and connect to remote dbWindow Service In C# - The underlying provider failed on OpenHow can i use 2 connection string using OR condition Web.config in asp.net

Sleepy tired vs physically tired

Two queries on triangles, the sides of which have rational lengths

Using Sed to add counter to keyword

When can a Barbarian, who has just levelled up, use the additional Rage gained from that level?

Why would "dead languages" be the only languages that spells could be written in?

Did Snape really give Umbridge a fake Veritaserum potion that Harry later pretended to drink?

What does the ash content of broken wheat really mean?

Why do Klingons use cloaking devices?

Should I hide my travel history to the UK when I apply for an Australian visa?

Machine Learning Golf: Multiplication

How should I present a resort brochure in my general fiction?

Was Wolfgang Unzicker the last Amateur GM?

How can power levels matter in a magic system that emphasizes control?

Interview Question - Card betting

Should you add specific garden-fresh herbs to a stew at the beginning or the end?

Is there an easy way to index by a binary vector / mask?

What happens if the limit of 4 billion files was exceeded in an ext4 partition?

Can 4 Joy cons connect to the same Switch?

How serious is plagiarism in a master’s thesis?

What is this arch-and-tower near a road?

How to figure out layers of the atmosphere?

Minimizing medical costs with HSA

Is it bad to suddenly introduce another element to your fantasy world a good ways into the story?

Park the computer



Converting entity connection to local


Entity Framework vs LINQ to SQLWhy does Entity Framework over SQL Express ignore timeout?Connection String Using a Domain User?Setting up dynamic connection string for log4netMax pool size reached in while using threading in c# codeRemote server claims table doesn't existEntity Framework Connection String “The Server was not found”Using elastic beanstalk to deploy .net web app and connect to remote dbWindow Service In C# - The underlying provider failed on OpenHow can i use 2 connection string using OR condition Web.config in asp.net






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to convert a web application to being local so I can do some testing on another application.



I am having issues with the web.config however and it is gving a 404 once I change this connection string.



the current string is



<add name="Entities" 
connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
provider=System.Data.SqlClient;
provider connection string=&quot;
Data Source=THEDATABASE;
Initial Catalog=THECATALOG;
Persist Security Info=True;
User ID=THEUSER;
Password=THEPASSWORD;
MultipleActiveResultSets=True&quot;"
providerName="System.Data.EntityClient" />


here is the converted string I was attempting to use



<add name="Entities" 
connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
provider=System.Data.SqlClient;
provider connection string=&quot;
Data Source=LOCALSQLEXPRESS;
Initial Catalog=THECATALOG;
Persist Security Info=True;
User ID=USER;
Password=PASSWORD;
MultipleActiveResultSets=True&quot;"
providerName="System.Data.EntityClient" />


I made a direct copy of the database to be on my local as well. The other ones I previously changed all seem to be working just not this one. I have tried to google it and I did follow a few other examples I found on here but nothing has worked.










share|improve this question




























    0















    I am trying to convert a web application to being local so I can do some testing on another application.



    I am having issues with the web.config however and it is gving a 404 once I change this connection string.



    the current string is



    <add name="Entities" 
    connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
    provider=System.Data.SqlClient;
    provider connection string=&quot;
    Data Source=THEDATABASE;
    Initial Catalog=THECATALOG;
    Persist Security Info=True;
    User ID=THEUSER;
    Password=THEPASSWORD;
    MultipleActiveResultSets=True&quot;"
    providerName="System.Data.EntityClient" />


    here is the converted string I was attempting to use



    <add name="Entities" 
    connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
    provider=System.Data.SqlClient;
    provider connection string=&quot;
    Data Source=LOCALSQLEXPRESS;
    Initial Catalog=THECATALOG;
    Persist Security Info=True;
    User ID=USER;
    Password=PASSWORD;
    MultipleActiveResultSets=True&quot;"
    providerName="System.Data.EntityClient" />


    I made a direct copy of the database to be on my local as well. The other ones I previously changed all seem to be working just not this one. I have tried to google it and I did follow a few other examples I found on here but nothing has worked.










    share|improve this question
























      0












      0








      0








      I am trying to convert a web application to being local so I can do some testing on another application.



      I am having issues with the web.config however and it is gving a 404 once I change this connection string.



      the current string is



      <add name="Entities" 
      connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
      provider=System.Data.SqlClient;
      provider connection string=&quot;
      Data Source=THEDATABASE;
      Initial Catalog=THECATALOG;
      Persist Security Info=True;
      User ID=THEUSER;
      Password=THEPASSWORD;
      MultipleActiveResultSets=True&quot;"
      providerName="System.Data.EntityClient" />


      here is the converted string I was attempting to use



      <add name="Entities" 
      connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
      provider=System.Data.SqlClient;
      provider connection string=&quot;
      Data Source=LOCALSQLEXPRESS;
      Initial Catalog=THECATALOG;
      Persist Security Info=True;
      User ID=USER;
      Password=PASSWORD;
      MultipleActiveResultSets=True&quot;"
      providerName="System.Data.EntityClient" />


      I made a direct copy of the database to be on my local as well. The other ones I previously changed all seem to be working just not this one. I have tried to google it and I did follow a few other examples I found on here but nothing has worked.










      share|improve this question














      I am trying to convert a web application to being local so I can do some testing on another application.



      I am having issues with the web.config however and it is gving a 404 once I change this connection string.



      the current string is



      <add name="Entities" 
      connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
      provider=System.Data.SqlClient;
      provider connection string=&quot;
      Data Source=THEDATABASE;
      Initial Catalog=THECATALOG;
      Persist Security Info=True;
      User ID=THEUSER;
      Password=THEPASSWORD;
      MultipleActiveResultSets=True&quot;"
      providerName="System.Data.EntityClient" />


      here is the converted string I was attempting to use



      <add name="Entities" 
      connectionString="metadata=res://*/DataModel.csdl|res://*/DataModel.ssdl|res://*/DataModel.msl;
      provider=System.Data.SqlClient;
      provider connection string=&quot;
      Data Source=LOCALSQLEXPRESS;
      Initial Catalog=THECATALOG;
      Persist Security Info=True;
      User ID=USER;
      Password=PASSWORD;
      MultipleActiveResultSets=True&quot;"
      providerName="System.Data.EntityClient" />


      I made a direct copy of the database to be on my local as well. The other ones I previously changed all seem to be working just not this one. I have tried to google it and I did follow a few other examples I found on here but nothing has worked.







      .net web-config






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 18:39









      mobwarmobwar

      224 bronze badges




      224 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344465%2fconverting-entity-connection-to-local%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55344465%2fconverting-entity-connection-to-local%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript