In Part 2 of my series on creating Angular templates for Visual Studio 2017, I made a relatively serviceable template for my latest Angular test. But, I knew it could improved.
Ramblings of a software developer..
posted on April 30, 2017 by long2know in angular, Core
In Part 2 of my series on creating Angular templates for Visual Studio 2017, I made a relatively serviceable template for my latest Angular test. But, I knew it could improved.
posted on April 28, 2017 by long2know in Core
Continuing down the porting trail, there are a few more relevant things I want to share that I didn’t cover previously.
posted on April 27, 2017 by long2know in Core, Entity Framework
A while back, I started looking at ways to port EF6 code, that uses a lot of the API hooks and such, to Entity Framework Core. Over the past week, I managed to port a large scale application that was using EF6 to utilize EF Core. Here are some observations/tips in continuing with my Dotnet Core porting.
posted on April 23, 2017 by long2know in Core, Entity Framework
I spent the better part of my development time this weekend porting various code from the .NET “full” framework to .NET Core. This included porting EntityFramework 6.1.3 code to EntityFramework Core 1.1.1. It was about as big of a pain as you would expect.
posted on April 22, 2017 by long2know in angular, Core
After my last foray into finding/creating a decent Angular VS2017 template, I decided to go back to a simpler approach and update the previous template I made for Angular 2.x.
posted on April 17, 2017 by long2know in angular, ASP.NET, Core
The latest tooling in Visual Studio 2017 for .NET Core is pretty good. However, it seemed like built-in templates are a bit lacking. Fortunately, the dotnet sdk, and subsequently the CLI, have libraries available for various Single Page Application framework quick starts.
UPDATE – Also check out my other posts on this topic:
https://blog.long2know.com/2017/04/net-core-angular-vs2017-templates-part-2/
https://blog.long2know.com/2017/04/net-core-angular-vs2017-templates-part-3/
posted on September 23, 2016 by long2know in ASP.NET, Core
Using Web.Config (or App.Config) XML files to store and retrieve settings for an application, imho, has always been a bit of a pain. Unless we write quite a bit of custom code, all we really get is a property bag of stings for our custom (user) configurations.
posted on September 22, 2016 by long2know in ASP.NET, Core
In most of my projects over the past two years, I’ve used Log4Net for my logging needs. Log4Net does not work, currently, with .NET Core. However, it’s pretty easy to take advantage of the new built-in logging features to wrap the Log4Net database schema using Entity Framework.
posted on August 14, 2016 by long2know in ASP.NET, Core
Using the .NET Core Middleware for request processing is, imho, not very well documented. There are a couple of things that are not obvious: retrieving query parameters and binding a request body to an object. To top things off, accessing the request Body has a few issues. Here’s how to deal with these scenarios.
posted on August 13, 2016 by long2know in ASP.NET, Core
Over the past year and a few months, we, my coworkers and I that is, have been using an Actor Model framework to implement a sort-of state-engine-based distributing computing engine. Using a generalized framework for this seemed to introduce many complexities that, in my mind, could potentially be simplified. My weekend project is centered around exploring what can be done out-of-the-box with .NET Core.