Skip to content

Commit

Permalink
Remove RC2 workaround caution from getting started guides. Cref dotne…
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate McMaster committed Jun 29, 2016
1 parent 2a0bf7b commit a6868fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Scaffold-DbContext "'Server=(localdb)\mssqllocaldb;Database=Blogging;Trusted_Connection=True;'" Microsoft.EntityFrameworkCore.SqlServer
Scaffold-DbContext "Server=(localdb)\mssqllocaldb;Database=Blogging;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer
3 changes: 0 additions & 3 deletions docs/platforms/aspnetcore/existing-db.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ Now it's time to create the EF model based on your existing database.

.. literalinclude:: _static/reverse-engineer-command.txt

.. caution::
Note that the connection string is double quoted (with single quotes inside the double quotes). This is a workaround for a `known issue in RC2 <https://github.com/aspnet/EntityFramework/issues/5376>`_ for more details.

The reverse engineer process created entity classes and a derived context based on the schema of the existing database. The entity classes are simple C# objects that represent the data you will be querying and saving.


Expand Down

0 comments on commit a6868fb

Please sign in to comment.