Creating HTML themes in ASP.NET 5 using Sass
This article shows how to create HTML themes in an ASP.NET 5 angular application using Sass and grunt. The CSS themes are created using Sass, built using grunt-contrib-sass and compressed using...
View ArticleAn ASP.NET 5 AngularJS application with Elasticsearch, NEST and Watcher
This article shows how to create an Angular application using ASP.NET 5 which can create alarm documents in Elasticsearch using NEST. The repository layer uses the new configuration from the beta 6...
View ArticleUsing Elasticsearch Watcher to create data events in ASP.NET MVC 6
This article shows how to setup Elasticsearch Watcher in Elasticsearch to call an MVC controller in an ASP.NET 5 application. The controller action method will handle these events in part 3 of this...
View ArticleVisualizing Elasticsearch Watcher events using ASP.NET 5, SignalR and Angular
This article shows how to display Elasticsearch Watcher events in an Angular UI using SignalR. The Elasticsearch Watcher events are sent to a MVC 6 controller in an ASP.NET 5 application. The action...
View ArticleASP.NET 5 with SQLite and Entity Framework 7
This article shows how to use SQLite with ASP.NET 5 using Entity Framework 7. EF7 can now create SQLite databases using Entity Framework migrations which was not possible in previous versions. Code:...
View ArticleASP.NET 5 Action Filters
This article shows how the ActionFilterAttribute class can be used in an ASP.NET 5 MVC application. The ActionFilterAttribute class is an implementation of the IActionFilter, IAsyncActionFilter,...
View ArticleASP.NET 5 examples and links
This is my landing page which I use for presentations. See the links underneath for getting started with ASP.NET 5. Using DataAnnotations and Localization in ASP.NET 5 MVC 6 ASP.NET beta 8 code | blog...
View ArticleASP.NET 5 Exception Filters and Resource Filters
This article shows how an exception filter and a resource filter can be used in ASP.NET 5. Code: https://github.com/damienbod/AspNet5Filters 16.10.2015: Updated to ASP.NET 5 beta8 An exception filter...
View ArticleASP.NET 5 multiple configurations without using environment variables
This article shows how to use multiple Json configuration files in ASP.NET 5 which can be used in CI for automatic deployment without requiring environment variables. Code:...
View ArticleASP.NET 5 MVC 6 Localization
This article shows some of the ways in which localization can be used in a MVC 6 ASP.NET 5 application. Code: https://github.com/damienbod/AspNet5Localization Localization Setup The localization is...
View ArticleOAuth2 Implicit Flow with Angular and ASP.NET 5 IdentityServer
This article shows how to implement the OAuth2 Implicit Flow with an Angular client and IdentityServer3 hosted in ASP.NET 5. The code was built using the example from the IdentityServer3.Samples....
View ArticleUsing Elasticsearch with ASP.NET 5 dnxcore50
This article shows how to use Elasticsearch with ASP.NET 5, dnxcore or dnx451. ElasticsearchCrud ASP.NET 5 rc1 version is used for the Elasticsearch data access. ElasticsearchCrud supports dnxcore50,...
View ArticleASP.NET 5 MVC 6 File Upload with MS SQL SERVER FileTable
This article shows how to upload and download files in ASP.NET 5 MVC 6 and save the files to a MS SQL Server using FileTable. The data access for the application is implemented in a separate project...
View ArticleASP.NET 5 MVC 6 API documentation using Swashbuckle Swagger
This article shows how to document your MVC 6 API using Swagger with Swashbuckle. Per default, it does not use your xml comments in the code and this needs to be configured if required. Code:...
View ArticleExperiments with Entity Framework 7 and ASP.NET 5 MVC 6
The article shows some of the ways in which Entity Framework 7 can be used together with ASP.NET 5 MVC 6. Both packages run on dnxcore which makes it possible to run on Linux, Mac or Windows operating...
View ArticleASP.NET 5 with PostgreSQL and Entity Framework 7
This article shows how to use PostgreSQL with ASP.NET 5 using Entity Framework 7. Code: https://github.com/damienbod/AspNet5MultipleProject The PostgreSQL Entity Framework 7 provider can be downloaded...
View ArticleASP.NET Core 1.0 using SQL Localization
This article shows how to use SQL localization in ASP.NET Core using an SQL database. The SQL localization in the demo uses Entity Framework Core to access a SQLite database. This can be configured to...
View ArticlePlotly charts using Angular, ASP.NET Core 1.0 and Elasticsearch
This article shows how to use a javascript Plotly Bar Chart in Angular to display data from an ASP.NET Core 1.0 MVC application. The server uses Elasticsearch as persistence and uses it to retrieve the...
View ArticleAuthorization Policies and Data Protection with IdentityServer4 in ASP.NET Core
This article shows how authorization policies can be used together with IdentityServer4. The policies are configured on the resource server and the ASP.NET Core IdentityServer4 configures the user...
View ArticleAngular OpenID Connect Implicit Flow with IdentityServer4
This article shows how to implement the OpenID Connect Implicit Flow using Angular. This previous blog implemented the OAuth2 Implicit Flow which is not an authentication protocol. The OpenID Connect...
View Article