ASP.NET Core 1.0 multiple configurations without using environment variables
This article shows how to use multiple Json configuration files in ASP.NET Core 1.0 which can be used in CI for automatic deployment without requiring environment variables. Code:...
View ArticleASP.NET Core 1.0 updating to beta8 from older beta versions
This post just explains some of the things you need to do when updating to ASP.NET Core 1.0 beta8 from older versions. I have updated some existing ASP.NET Core 1.0 example projects to beta8. The first...
View ArticleASP.NET Core 1.0 MVC 6 Localization
This article shows some of the ways in which localization can be used in a MVC 6 ASP.NET Core 1.0 application. Code: https://github.com/damienbod/AspNet5Localization/tree/rc1 20.11.2015: ASP.NET Core...
View ArticleUsing DataAnnotations and Localization in ASP.NET Core 1.0 MVC 6
This article shows how ASP.NET Core 1.0 localization can be used together with data annotations. The data annotations are used to decorate the data model, and when HTTP POST/PUT (also PATCH) Requests...
View ArticleOAuth2 Implicit Flow with Angular and ASP.NET Core 1.0 IdentityServer
This article shows how to implement the OAuth2 Implicit Flow with an Angular client and IdentityServer4 hosted in ASP.NET Core 1.0. The code was built using the IdentityServer4.Samples. Thanks to...
View ArticleUsing Elasticsearch with ASP.NET Core 1.0 dnxcore50
This article shows how to use Elasticsearch with ASP.NET Core 1.0, dnxcore or dnx451. ElasticsearchCrud ASP.NET Core 1.0 rc1 version is used for the Elasticsearch data access. ElasticsearchCrud...
View ArticleASP.NET Core 1.0 MVC File Upload with MS SQL SERVER FileTable
This article shows how to upload and download files in ASP.NET Core 1.0 MVC and save the files to a MS SQL Server using FileTable. The data access for the application is implemented in a separate...
View ArticleASP.NET Core 1.0 MVC API documentation using Swashbuckle Swagger
This article shows how to document your ASP.NET Core 1.0 MVC 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....
View ArticleExperiments with Entity Framework Core and ASP.NET Core 1.0 MVC
The article shows some of the ways in which Entity Framework Core can be used together with ASP.NET Core 1.0 MVC. Both packages run on dnxcore which makes it possible to run on Linux, Mac or Windows...
View ArticleASP.NET Core 1.0 with PostgreSQL and Entity Framework 7
This article shows how to use PostgreSQL with ASP.NET Core 1.0 using Entity Framework 7. Code: https://github.com/damienbod/AspNet5MultipleProject The PostgreSQL Entity Framework 7 provider can be...
View Article