background preloader

.NET CORE

Facebook Twitter

ASP.NET Core 1.0 RC2 and Angular2 using WEB API. Download ShanuASPNETCoreAngular2WEBAPI.zip - 1.1 MB Introduction In this article we will see in detail of using Angular2 with ASP.NET Core 1.0 RC2 using WEB API. In our previous article we have seen few basics of ASP.NET Core 1.0 and AnfularJS now we will see in detail about using WEB API and Angular2 in ASP.NET Core RC2. In this article we will see in detail of how to Create our ASP.NET Core 1.0 RC2 Web Application. Creating MVC Model to add Student details. Reference website : , Prerequisites Visual Studio 2015: You can download it from here. ASP.NET Core 1.0 RC2: download link Using the code After installed both Visual Studio 2015 and ASP.NET Core 1.0 RC2. Next select Web Application. Hide Copy Code Restoring : Al Installed: 2. ASP.NET Core, Angular 2 Master Detail HTML Grid using Web API and EF 1.0.1 - CodeProject. Introduction In this article, let’s see how to create our own ASP.NET Core, Angular 2 Master Detail HTML Grid using Template pack, Entity Framework 1.0.1, and Web API to display Master and Detail data from database to our Angular2 and ASP.NET Core web application.

Kindly read my previous articles which explains in depth about getting started with ASP.NET Core Angular 2 EF 1.0.1 Web API Using Template Pack. In this article, let’s see: Creating sample database and Student Master and Detail Table in SQL Server to display in our web application. How to create ASP.NET Core Angular 2 Starter Application (.NET Core) using Template pack. Creating EF, DBContext Class and Model Class. This article will explain how to create a Master /Detail Table and bind the Master related details in inner HTML table to show the output as Master/Detail Grid. Here, we are displaying student details by each student Id. Prerequisites Make sure you have installed all the following prerequisites in your computer.

History. ASP.​NET Core and Angular2 using dotnet CLI and Visual Studio Code. This is another post about ASP.NET Core and Angular2. This time I use a cleaner and more light weight way to host a Angular2 App inside an ASP.NET Core Web. I'm going to use dotnet CLI and Visual Studio Code. A few days ago there was an update for ASP.NET Core announced. This is not a big one, but a important run-time update. This post is structured into nine steps: #1 Create the ASP.NET Core web The first step is to create the ASP.NET Core web application this is the easiest thing using the dotnet CLI. Type the following line to create a new web application inside that working folder: > dotnet new -t web If you used the dotnet CLI for the first time it will take a few seconds. Now you have a complete ASP.NET Core quick-start application. Now we need to restore the NuGet packages, which contains all the .NET Core and ASP.NET dependencies > dotnet restore This takes a few seconds, depending in the amount of packages or on the internet connection. #2 Setup the ASP.NET Core web #7 Create the app.

Generating Classes from XML and JSON in Visual Studio - CodeProject. Introduction It's very difficult and time consuming to writing the classes in C# for the XML or JSON if developer chooses to write it manually, but in .NET framework 4.5, Microsoft introduced a very good feature to creating the class from XML or JSON. In this article, we will discuss steps how to use this feature in Visual Studio.

Using the Code Let’s consider someone wanted to create a class in C# using the below XML: Hide Copy Code <EmployeeDetails><Employee type="permanent"><Name>Bhausaheb Patil</Name><Id>3674</Id><Age>36</Age></Employee><Employee type="contract"><Name>Robin</Name><Id>3675</Id><Age>25</Age></Employee><Employee type="permanent"><Name>Crow</Name><Id>3676</Id><Age>28</Age></Employee></EmployeeDetails> Here are the steps to quickly convert it into the class: Place the cursor in a location in any existing classes.

Visual Studio automatically creates serialized class for the XML or JSON, for our sample example, the class will look like shown in the below code snippet: Generator-aspnetcore-angular2. Generate a Visual Studio/Code project for ASP.NET Core, Angular 2, and TypeScript Generate a Visual Studio/Code project for ASP.NET Core, Angular 2, and TypeScript Visual Studio 2015 Update 3Visual Studio CodeASP.NET Core 1.0Angular 2 RC4Material Design LiteSwagger via Swashbuckle (Ahoy) Installation First, install Yeoman and generator-aspnetcore-angular2 using npm (we assume you have pre-installed node.js). npm install -g yo npm install -g generator-aspnetcore-angular2 Then generate your new project: command line From the root folder, type the following commands: cd src/webapp npm install tsc dotnet restore dotnet run Result What it looks like: What you get: Getting To Know Yeoman Yeoman has a heart of gold.

License MIT <3 sgbj. Single Page Application (SPA) for Enterprise App (Angular2 & WebApi) Introduction The first thing, I would like to share to you is "We did not learn technogies, we learn how to use technologies for our business". Nowadays, with growing of web development, more and more desktop applications (such as HRM, CRM, Payroll, ...) were migrated to web application. So the web application can utilize much benefit from web environment. This is easy to search the pros and cons between web application and desktop application on the internet, so we will not discuss here.

Purpose of series of articles will introduce you how did I organise the project for those types of application. Some highlight technologies: Angular2 (typescript) WebApi (RESTful) Entity Framework Bootstrap IoC Multi-Layer architecture Modular your Application Multi Languages Design Pattern (Unit Of Work, Repository, …) SOLID principle Gulp NodeJs There are many mistake and improvements need to be done so far. How to get the code Checkout the code at Run client side: Table pagination with Search bar in Angular2 - CodeProject. Download demo Introduction Through this article, you will learn using Angular2: how you can create a table with pagination how you can implement a search bar to filter the content of table.

Background To better understand this article , it is preferable that you have a good knowledge’s on: Data Binding TypeScript Angular2 Using the Code A) Prerequisite Before you start coding, I recommend you to download Angular2 template from Angular 2 website: Angular2 Quick Start. When you run the cmd tree command you should find the below folders tree : B) Build Application To constitute, this example you should first create Typescript classes that build the pagination and search logic. **) Angular2 typescript classes This section will describe steps that I follow to build the core of application in Typescript: Create Product.ts This class contains a list of attributes that describes a product object. it will be used to define an item on the 'productList' array. Hide Copy Code Create Data.ts Update app.module.ts.