Here’s the Topics:
- Manage Packages
- EF Core Model(DB-First)
- MVC Core Scaffolding
Let’s Create New Project: File > New > Project
From left menu choose .Net Core > ASP.Net Core Web Application
Choose ASP.Net Core sample template, Click OK.
Here’s the initial view of sample template in solution explorer.
Create a new database using SSMS, name it “PhoneBook”. Copy the below query & run it using query editor of SSMS.
USE [PhoneBook]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Contacts](
[ContactID] [int] IDENTITY(1,1) NOT NULL,
[FirstName] [nvarchar](50) NULL,
[LastName] [nvarchar](50) NULL,
[Phone] [nvarchar](50) NULL,
[Email] [nvarchar](50) NULL,
CONSTRAINT [PK_Contacts] PRIMARY KEY CLUSTERED
(
[ContactID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Entity Framework Core:
Entity Framework (EF) Core is data access technology which is targeted for cross-platform. Open project.json add below packages in Dependency & Tools section.
Add Dependency Package:
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
"Microsoft.EntityFrameworkCore.SqlServer.Design": "1.0.1"
Add Tools:
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
EntityFrameworkCore.SqlServer: Database Provider, that allows Entity Framework Core to be used with Microsoft SQL Server. EntityFrameworkCore.SqlServer.Design: Design-time, that allows Entity Framework Core functionality (EF Core Migration) to be used with Microsoft SQL Server. EntityFrameworkCore.Tools: Command line tool for EF Core that Includes Commands
For Package Manager Console:
- Scaffold-DbContext
- Add-Migration
- Update-Database
For Command Window
- dotnet ef dbcontext scaffold
Using CommandLine In our sample application we are going to apply Commands using the command line.
Go to Project directory > Shift + Right Click to open Command window.
Command: dotnet ef –help
Command: dotnet ef dbcontext scaffold "Server=DESKTOP-5B67SHH;Database=PhoneBook;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer --output-dir Models
As we can see from solution explorer models folder is created with Context & Entities.
Generated DbContext: Finally full view of generated Context class.
public partial class PhoneBookContext : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. See http://go.microsoft.com/fwlink/?LinkId=723263 for guidance on storing connection strings.
optionsBuilder.UseSqlServer(@"Server=DESKTOP-5B67SHH;Database=PhoneBook;Trusted_Connection=True;");
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Contacts>(entity =>
{
entity.HasKey(e => e.ContactId)
.HasName("PK_Contacts");
entity.Property(e => e.ContactId).HasColumnName("ContactID");
entity.Property(e => e.Email).HasMaxLength(50);
entity.Property(e => e.FirstName).HasMaxLength(50);
entity.Property(e => e.LastName).HasMaxLength(50);
entity.Property(e => e.Phone).HasMaxLength(50);
});
}
public virtual DbSet<Contacts> Contacts { get; set; }
}
ASP.Net MVC Core Scaffolding:
We have used scaffolding in previous version of .Net, as .Net Core is new sometimes it’s getting confusing how to start, here we will explore those issues. Open project.json add below packages in Dependency & Tools section. Add Dependency Package:
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "1.0.0-preview2-final",
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": "1.0.0-preview2-final"
Add Tools:
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": "1.0.0-preview2-final"
Click Save, packages will restore automatically. Well packages are installed to our application, we are good to perform next step of Scaffolding Controller & Views.
Scaffold using Interface: Right Click on Controller folder > Add > New Scaffolding Item
Choose the scaffold option how the code will generated.
Now provide model, context classes that is going to use to interact with database, choose view options then click Add button to perform the action.
Wait for a while as we can see from solution explorer the views are generated.
The output messages are shown below.
C:\Program Files\dotnet\dotnet.exe aspnet-codegenerator --project "E:\Documents\Article\ScaffoldingCoreMVC\CoreMVCScaffolding\src\CoreMVCScaffolding" controller --force --controllerName ContactsController --model CoreMVCScaffolding.Models.Contacts --dataContext CoreMVCScaffolding.Models.PhoneBookContext --relativeFolderPath Controllers --controllerNamespace CoreMVCScaffolding.Controllers --useDefaultLayout
Finding the generator 'controller'...
Running the generator 'controller'...
Attempting to compile the application in memory
Attempting to figure out the EntityFramework metadata for the model and DbContext: Contacts
Added Controller : \Controllers\ContactsController.cs
Added View : \Views\Contacts\Create.cshtml
Added View : \Views\Contacts\Edit.cshtml
Added View : \Views\Contacts\Details.cshtml
Added View : \Views\Contacts\Delete.cshtml
Added View : \Views\Contacts\Index.cshtml
RunTime 00:00:07.87
Scaffold using CommandLine: We can generate that by using CommandLine, pointing the project folder with Shift + Right Click then command window will appear. Get help information by the following command.
Command: dotnet aspnet-codegenerator --help
Let’s generate Controller & View using below command with project path, controller, model info.
Command: dotnet aspnet-codegenerator --project "E:\Documents\Article\ScaffoldingCoreMVC\CoreMVCScaffolding\src\CoreMVCScaffolding" controller --force --controllerName ContactsController --model CoreMVCScaffolding.Models.Contacts --dataContext CoreMVCScaffolding.Models.PhoneBookContext --relativeFolderPath Controllers --controllerNamespace CoreMVCScaffolding.Controllers –useDefaultLayout
As we can see the controller & view is successfully generated using MVC model. In our sample application if we notice in the Error List tab there’s a warning about to move sensitive information from DbContext.
This is the area in DbContext class which cause the warning.
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. See http://go.microsoft.com/fwlink/?LinkId=723263 for guidance on storing connection strings.
optionsBuilder.UseSqlServer(@"Server=DESKTOP-5B67SHH;Database=PhoneBook;Trusted_Connection=True;");
}
Let’s comment that out, here in startup class now add the service by moving the connectionstring info from DbContext. Below you may notice the code snippet that add the service.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
var connection = @"Server=DESKTOP-5B67SHH;Database=PhoneBook;Trusted_Connection=True;";
services.AddDbContext<PhoneBookContext>(options => options.UseSqlServer(connection));
}
If we now try to run our application below exception will occur. Here’s the Exception message:
InvalidOperationException: No database provider has been configured for this DbContext.
A provider can be configured by overriding the DbContext.OnConfiguring method or
by using AddDbContext on the application service provider.
If AddDbContext is used, then also ensure that your DbContext
type accepts a DbContextOptions<TContext> object in its constructor
and passes it to the base constructor for DbContext.
It says, No database provider has been configured for this DbContext. Notice that we have used AddDbContext in ConfigureServices(IServiceCollection services) method.
services.AddDbContext<PhoneBookContext>(options => options.UseSqlServer(connection));
But we didn’t pass it for DbContext, We need to add below constructor to pass it to the base constructor for DbContext.
public PhoneBookContext(DbContextOptions<PhoneBookContext> options) :
base(options)
{
}
Now we may run our sample application by Ctrl+f5 or we can run using below command.
Command: dotnet run
Open browser Go to http://localhost:5000, finally the application is running.
Contact List
Create New Contact
Edit Existing Contact
View Details Existing Contact
Delete Existing Contact
Hope this will help 🙂
References:
- https://docs.microsoft.com/en-us/ef/core/index
- https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/dotnet
- https://github.com/aspnet/EntityFramework/wiki/Roadmap
- https://www.codeproject.com/articles/1118189/crud-using-net-core-angularjs-webapi