Try to use
dnx ef dbcontext scaffold
"Server=ServerInstanceName;Database=db;Trusted_Connection=True;"
EntityFramework.MicrosoftSqlServer
--dataAnnotations
--outputDir Data
--verbose
--table dbo.Users
All the above parameters should be in the same line, but I wrapped the long line to read it more easy. You can look at the source code to see which options supports scaffold
command in RC1.
Be carefully in copy and paste the ConnectionString
from appsettings.json
because you could have Server=Server\InstanceName;
in ConnectionString
, but dnx ef dbcontext scaffold
accept currently only Server=ServerInstanceName;
and you will get System.InvalidOperationException
error on the usage of Server=Server\InstanceName;
directly copied from the ConnectionString
of appsettings.json
.
Additional important parameter is -p | --targetProject
, which is important if you use repository in the class library. In the case you defines ef
command in the main project, and you start dnx ef dbcontext scaffold
in the directory of the main project, but you use -p
to reference the class library project.
The last remark. Sometimes one need to scaffold subset of tables from the database. It's not full clear from the command line help, but one can specify -t
(-table
) parameter multiple times. See the note in the EF7 wiki. Thus if you want to import only two tables dbo.Users
and dbo.Posts
(whether Posts
have foreign key to Users
) then you can use the following syntax
dnx ef dbcontext scaffold
"Server=ServerInstanceName;Database=db;Trusted_Connection=True;"
EntityFramework.MicrosoftSqlServer
-a
-o Models
-v
-t dbo.Users
-t dbo.Posts
UPDATED: One should use dotnet ef dbcontext scaffold
instead of dnx ef dbcontext scaffold
in ASP.NET Core RC2 and later.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…