Tag Archives: MVC Core
Import and Export CSV in ASP.NET Core
This article shows how to import and export csv data in an ASP.NET Core application. The InputFormatter and the OutputFormatter classes are used to convert the csv data to the C# model classes. Code: https://github.com/damienbod/AspNetCoreCsvImportExport 2019-09-14: Updated to ASP.NET Core 3.0 2019-02-15: Updated to ASP.NET Core 2.2 2018-07-09: Updated to ASP.NET Core 2.1 2017-10-29: Support […]
ASP.NET Core, Angular with Webpack and Visual Studio
This article shows how Webpack could be used together with Visual Studio ASP.NET Core and Angular. Both the client and the server side of the application is implemented inside one ASP.NET Core project which makes it easier to deploy. Code: https://github.com/damienbod/AngularWebpackVisualStudio Blogs in this series: ASP.NET Core, Angular with Webpack and Visual Studio Building production […]