To partition your asp.net core project into several csprojs is easy or maybe you want to make use of one or more common functionality between multiple apps. ASP.Net Core came with an abstraction over the resource of an app, it’s called application parts. Using an appliction part, we can share controllers,views, tag helpers etc intoContinue reading “ASP .NET Core MVC, partitioned controllers and views into several csprojs”
Tag Archives: .net core
Menggunakan SignalR di ASP .NET Core
SignalR adalah library untuk ASP .Net Core
Angular 2 application with asp.net core API – Part 2
The angular template from dotnet cli is using the angular v4.4.6 LTS version. So we cannot use the latest angular v.5 APIs. After creating the angular components in earlier post now we need to write each component, if you use VSCode or Visual Studio this will be easy because the editor will provide intellisense forContinue reading “Angular 2 application with asp.net core API – Part 2”
Angular 2 application with asp.net core API
To develop web application with Angular 2 and ASP .NET Core API we can use a builtin template that’s provide from the dotnet CLI (command line interface) by typing dotnet new angular but before you do that you need to make a new folder where you’ll put all your project files. Don’t forget to runContinue reading “Angular 2 application with asp.net core API”
Hasil StackOverflow Developer Survey 2017
Melihat hasilĀ Developer Survey tahun 2017, banyak hal yang bias ditarik kesimpulannya. Misal, Sebagian besar peran dari responden adalah sebagai web developer, meskipun dijelaskan bahwa banyak juga dari mereka yang membuat aplikasi desktop dan mobile. Bahasa pemrograman yang paling populer adalah : JavaScript SQL Java C# dst. Sepertinya banyak developer jaman sekarang yang bekerja membuat WebContinue reading “Hasil StackOverflow Developer Survey 2017”
asp.net core MVC login menggunakan custom database. Part-3
Melengkapi asp.net Core MVC tutorial series: part-1, part-2 danĀ tulisan ini sebagai part-3. EntityFrameworkCore Untuk mengakses database, asp.net core secara default menggunakan EntityFrameworkCore dan Sql Server. EntityFrameworkCore adalah data access technology, ini adalah versi ringan dan cross platform dari EntityFramework. Ada dua cara untuk menggunakan entityframework: Code first Database first Tutorial ini menggunakan code first,Continue reading “asp.net core MVC login menggunakan custom database. Part-3”