Today I extended one of our classes to use inheritance via Typescript (love that). When I refreshed the page I received an error here When I dropped to the Chrome debugger and outputted both the values for both ‘d’ and ‘b’ I was a bit shocked. ‘d’ was valid, but ‘b’...
If you have been using TypeScript you should be aware the definition file repository maintained by Boris Yankov called DefinitelyTyped . This repository is awesome because it saves so much time and effort when working with 3rd party libraries with Typescript. However, as great as this repository...
I was doing some profiling of our Entity Framework stuff via EFProfiler the other day and noticed something really odd. When I was watching the profiler I noticed that I had a query returning back over 1300 results and that was NOT right, I had expected only 1 result. I looked the resulting...
Recently I mentioned this.Log . Given the amount of folks that were interested in this.Log, I decided to pull this source out and make a NuGet package (well, several packages). Source The source is now located at https://github.com/ferventcoder/this.log . Please feel free to send pull requests (with...
One of my favorite creations over the past year has been this.Log(). It works everywhere including static methods and in razor views. Everything about how to create it and set it up is in this gist . How it looks public class SomeClass { public void SomeMethod() { this.Log().Info(() => "Here...