ASP.NET Core With Visual Studio 2017 RC

Introduction

Microsoft released a new version of Visual Studio - Visual Studio 2017 RC. It has a lot of new features and development tools. We can download it from here. There are three editions of Visual Studio 2017, as follows.

  1. Visual Studio Community 2017 RC: Free, fully-featured IDE for students, open-source and individual developers.
  2. Visual Studio Professional 2017 RC: Professional developer tools, services, and subscription benefits for small teams.
  3. Visual Studio Enterprise 2017 RC: End-to-end solution to meet demanding quality and scale needs of teams of all sizes.

Installation

Now, download the Visual Studio 2017 RC using the above mentioned URL and run the downloaded exe. We will see a launch screen, as shown below.

Visual Studio

The Visual Studio 2017 RC installation process is online, so make sure the internet connection doesn’t break during installation process.

The Visual Studio 2017 RC offers a customization and smart way to choose the tool set. To install .NET Core, we have to select the “.NET Core and Docker(Preview)” from the Workloads panel. The following install screen shows Workloads set.

Visual Studio

As per the above figure, there are three tabs which help in installing the required components and tools only. We choose required workload, components and language;  after that click on install button. Now, the installation starts.

Visual Studio

It downloads workload and components as per our selection. Once the Visual Studio 2017 RC installation is completed, we see the following screen.

Visual Studio

This Launch screen has two buttons - Modify which is used to add more workloads and components, and Launch button which is used to launch the Visual Studio 2017 RC for application development. The bar icon shows the options for Repair and Uninstall.

Get Started Now

Once we have installed the Visual Studio with update 3 and .NET Core, we can start building the ASP.NET Core application. Follow the below steps to create your first application.

  1. Start Visual Studio 2017 RC.
  2. Go to File -> New Project and choose the ASP.NET Core Web Application (.NET Core) template from the collection of C# .NET Core templates, as shown in the below figure.

    Visual Studio

It’s a web template for cross platform compatible projects that run on .NET Core framework. With a destination folder location defined at the bottom, such as E:\Sample\, we click on OK button and will be greeted by a second set of web application template choices.

Visual Studio

It determines what features in ASP.NET Core are initially configured in our new application.

  1. Empty
    The ‘Empty’ template will start with nothing except some middleware that outputs the text “Hello World”.

  2. Web API
    The Web API template starts with a Controller class that will allow us to respond to RESTful requests at the /api/Values endpoint.

  3. Web Application
    The Web Application template gives us an MVC framework enabled project with some Razor views, the bootstrap CSS framework,   and jQuery library installed.

We will now develop a sample application using this predefined project template. As we don’t choose any authentication, that’s why there is not a create a Models folder. So, create a Model folder which holds a view model to pass data from view to controller and vice-versa, as per the following code snippet.

  1. using System.ComponentModel.DataAnnotations;  
  2. namespace RCWebApplication.Models {  
  3.     public class CustomerViewModel {  
  4.         public long Id {  
  5.             get;  
  6.             set;  
  7.         }  
  8.         [Display(Name = "First Name")]  
  9.         public string FirstName {  
  10.             get;  
  11.             set;  
  12.         }  
  13.         [Display(Name = "Last Name")]  
  14.         public string LastName {  
  15.             get;  
  16.             set;  
  17.         }  
  18.         public string Name {  
  19.             get;  
  20.             set;  
  21.         }  
  22.         public string Email {  
  23.             get;  
  24.             set;  
  25.         }  
  26.         [Display(Name = "Mobile No")]  
  27.         public string MobileNo {  
  28.             get;  
  29.             set;  
  30.         }  
  31.     }  
  32. }  
Now, we create another class to store customer data, as per the following code snippet.
  1. using System.Collections.Generic;  
  2. namespace RCWebApplication.Models {  
  3.     public class CustomerData {  
  4.         public static List < CustomerViewModel > Customers {  
  5.             get;  
  6.             set;  
  7.         } = new List < CustomerViewModel > ();  
  8.     }  
  9. }  
We use Home controller which has GET and POST action method as per the following code snippet.
  1. using Microsoft.AspNetCore.Mvc;  
  2. using RCWebApplication.Models;  
  3. namespace RCWebApplication.Controllers {  
  4.     public class HomeController: Controller {  
  5.         public IActionResult Index() {  
  6.             return View(CustomerData.Customers);  
  7.         }  
  8.         public IActionResult AddCustomer() {  
  9.                 CustomerViewModel model = new CustomerViewModel();  
  10.                 return View(model);  
  11.             }  
  12.             [HttpPost]  
  13.         public IActionResult AddCustomer(CustomerViewModel model) {  
  14.             if (ModelState.IsValid) {  
  15.                 CustomerData.Customers.Add(model);  
  16.             }  
  17.             return RedirectToAction("Index");  
  18.         }  
  19.     }  
  20. }  
The Controller is developed to handle add and view operation requests for a Customer entity. Now, let's develop the user interface for these operations. We develop it for the views for adding a customer and customer listing. Let's see each, one by one.

Customer List View

This is the first view when the application is accessed or the entry point of the application, when executed. It shows the customer listing as in  the Figure. We display customer data in tabular format and on this view we create links to add a new customer. This view is an index view and the following is a code snippet for Index.cshtml under the Home folder of Views.
  1. @model IEnumerable < RCWebApplication.Models.CustomerViewModel > < div class = "top-buffer" > < /div> < div class = "panel panel-primary" > < div class = "panel-heading panel-head" > Customers < /div> < div class = "panel-body" > < div class = "btn-group" > < a id = "createEditCustomerModal"  
  2. asp - action = "AddCustomer"  
  3. class = "btn btn-primary" > < i class = "glyphicon glyphicon-plus" > < /i> Add Customer < /a> < /div> < div class = "top-buffer" > < /div> < table class = "table table-bordered table-striped table-condensed" > < thead > < tr > < th > Name < /th> < th > Email < /th> < th > Mobile No < /th>  < /tr> < /thead> < tbody > @foreach(var item in Model) { < tr > < td > @Html.DisplayFor(modelItem => item.FirstName) @Html.DisplayFor(modelItem => item.LastName) < /td> < td > @Html.DisplayFor(modelItem => item.Email) < /td> < td > @Html.DisplayFor(modelItem => item.MobileNo) < /td>  < /tr>  
  4. } < /tbody> < /table> < /div> < /div>  
When we run the application and call the Index() action with a HttpGet request, then we get all the customers listed in the UI as in Figure 7. This UI has option for Add operation.

Visual Studio

Add Customer View

Now, define an "Add Customer" partial view. The following is the code snippet for AddCustomer.cshtml.
  1. @model RCWebApplication.Models.CustomerViewModel < div class = "top-buffer" > < /div> < div class = "panel panel-primary" > < div class = "panel-heading panel-head" > Add Customer < /div> < div class = "panel-body" > < form asp - action = "AddCustomer"  
  2. role = "form" > < div class = "form-horizontal" > < div class = "form-group" > < label asp -  
  3.     for = "FirstName"  
  4. class = "col-lg-3 col-sm-3 control-label" > < /label> < div class = "col-lg-6" > < input asp -  
  5.     for = "FirstName"  
  6. class = "form-control" / > < /div> < /div> < div class = "form-group" > < label asp -  
  7.     for = "LastName"  
  8. class = "col-lg-3 col-sm-3 control-label" > < /label> < div class = "col-lg-6" > < input asp -  
  9.     for = "LastName"  
  10. class = "form-control" / > < /div> < /div> < div class = "form-group" > < label asp -  
  11.     for = "Email"  
  12. class = "col-lg-3 col-sm-3 control-label" > < /label> < div class = "col-lg-6" > < input asp -  
  13.     for = "Email"  
  14. class = "form-control" / > < /div> < /div> < div class = "form-group" > < label asp -  
  15.     for = "MobileNo"  
  16. class = "col-lg-3 col-sm-3 control-label" > < /label> < div class = "col-lg-6" > < input asp -  
  17.     for = "MobileNo"  
  18. class = "form-control" / > < /div> < /div> < div class = "col-lg-6 col-sm-8 pull-right" > < button id = "btnCancel"  
  19. class = "btn btn-default"  
  20. type = "button" > Cancel < /button> < button class = "btn btn-success"  
  21. id = "btn"  
  22. type = "submit" > Submit < /button> < /div> < /div> < /form> < /div> < /div>  
Now, run the application and click on Add Customer button which calls AddCustomer action method, then we get the UI as in Figure 8 to add a new customer.

Visual Studio

Download

You can download other ASP.NET Core applications source code from TechNet Gallery, using the following links.
  1. Rating Star Application in ASP.NET Core
  2. CRUD Operations in ASP.NET Core and Entity Framework Core
  3. Repository Pattern In ASP.NET Core

See Also

I would like to recommend more articles related to ASP.NET Core.

  1. Overview Of ASP.NET Core
  2. CRUD Operations in ASP.NET Core using Entity Framework Core Code First
  3. Repository Pattern In ASP.NET Core

Conclusion

The Visual Studio 2017 RC can be used to develop most of the applications for different platforms. As it’s the RC version, we need to still wait to use it in a production development environment.


Similar Articles