C#
-
.NET
Windows Workflow 4: Human based workflows with a Meeting Scheduler Sample
Table Of Contents 1. Introduction 2. Scenario 3. Analysis 4. Design 5. Implementation 5.1 Meeting Availability Service 5.2 Defining the…
Read More » -
.NET
Implementing Inheritance with Entity Framework Code First
1. Introduction This walkthrough is an introduction to implementing inheritance with Entity Framework, Code First approach. A simple strategy for mapping…
Read More » -
.NET
C# Settings reminder
As a reminder to self: Settings are nice (too bad they advertise them as Windows Forms Application Settings, as they…
Read More » -
.NET
C#: Lazy is not constrained to static contexts, instance field initializers are: via Stack Overflow
Lazy<T> is not constrained to static contexts. Instance field initialisers cannot use instance references (but can use static references) as…
Read More » -
.NET
Using arrays to speed up static tree traversal
Over the last two weeks I wrote about how to construct and query a string prefix-trie. We used the data…
Read More » -
.NET
Critique this code : The memory mapped file
We got an error in the following code, in production. We are trying hard to make sure that we have…
Read More » -
.NET
LINQ Extensions 3 – Batch into sub-sequences
After last weeks post on extracting elements out of a list by minimum or maximum keys Ody Mbegbu mentioned on…
Read More » -
.NET
LINQ Extensions 2: Minimum/Maximum by key
Last week we talked about LINQ, its usefulness, and how to write our own methods to make it even more…
Read More » -
.NET
The Test Scope Creep
In “Should I use multiple asserts” we described the problem when using them in a single test. In the example…
Read More » -
.NET
Should I use or split multiple asserts?
I get this question often. It makes sense to stuff all kinds of assertions after a single setup and invocation.…
Read More »