Learning ASP.NET Core MVC Programming by Mugilan T. S. Ragupathi
Author:Mugilan T. S. Ragupathi [Ragupathi, Mugilan T. S.]
Language: eng
Format: mobi
Publisher: Packt Publishing
Published: 2016-11-16T05:00:00+00:00
Create Models and DbContext classes.
Create the Models folder and add the Employee model class and EmployeeDbContext class.
Create the Employee Model class (Employee.cs in the Models folder):public class Employee { public int EmployeeId { get; set; } public string Name { get; set; } public string Designation { get; set; } public decimal Salary { get; set; } }
Create EmployeeDbContext (EmployeeDbContext.cs in the Models folder):using Microsoft.Data.Entity; using Microsoft.Extensions.Configuration; namespace Validation.Models { public class EmployeeDbContext : DbContext { public IConfigurationRoot Configuration { get; set; } public DbSet<Employee> Employees { get; set; } public EmployeeDbContext() { var builder = new ConfigurationBuilder() .AddJsonFile("config.json") .AddEnvironmentVariables(); Configuration = builder.Build(); } protected override void OnConfiguring (DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer (Configuration.Get<string> ("Data:DefaultConnection:ConnectionString")); base.OnConfiguring(optionsBuilder); } } }
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
The Mikado Method by Ola Ellnestam Daniel Brolund(25295)
Hello! Python by Anthony Briggs(24340)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(23437)
Kotlin in Action by Dmitry Jemerov(22513)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(21977)
Dependency Injection in .NET by Mark Seemann(21849)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(20716)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(19526)
Grails in Action by Glen Smith Peter Ledbrook(18611)
Adobe Camera Raw For Digital Photographers Only by Rob Sheppard(17034)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(15843)
Secrets of the JavaScript Ninja by John Resig & Bear Bibeault(13698)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(11860)
Jquery UI in Action : Master the concepts Of Jquery UI: A Step By Step Approach by ANMOL GOYAL(11151)
A Developer's Guide to Building Resilient Cloud Applications with Azure by Hamida Rebai Trabelsi(10631)
Hit Refresh by Satya Nadella(9202)
The Kubernetes Operator Framework Book by Michael Dame(8570)
Exploring Deepfakes by Bryan Lyon and Matt Tora(8419)
Robo-Advisor with Python by Aki Ranin(8363)