I’ve heard a lot about microservices lately and I am trying to get an understanding of it. How does one apply the ideas and concepts? Martin Fowler in his keynote (link below) said microservices is a subset of Service Orientated Architecture. "If we take another look at our layered architecture, we might see that while there is tight coupling/high cohesion top to bottom, sometimes we can identify an element of loose coupling across vertical slices. The things that deal with one set of data don't ......
Resharper is a fabulous tool for Visual Studio and is my HUD for what’s going on. It helps me see things I don’t always notice. For example, using an IEnumerable multiple times will have blue squiggles and saw “Possible multiple enumeration of IEnumerable”. The power and pitfalls of LINQ and deferred execution! To avoid the multiple enumeration I usually .ToList() the enumerable. A colleague suggested using IReadOnlyList<T> which was added to .Net 4.5 in 2012 instead of IEnumerable<T> ......
File new project, MVC (Visual Studio 2013 in April 2014) Update all NuGet packages and I get this: Server Error in '/' Application. Could not load file or assembly 'Microsoft.Owin.Security, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad36... or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)Description: An unhandled exception occurred during the execution of the current web request. Please ......
I’ve been a software developer for about 10 years, 8 years in my current full time job and 2 years off and on in a part-time job during college. Every year we do a yearly review with a reflection form to fill out and a discussion after it has been looked at by a few people. This reflection got me thinking about how I’ve gotten to where I am now. 8 years ago I didn’t know .Net or C# (just some PHP I had taught myself in my college job) and was put on an small eCommerce site with WebForms and VB. It ......