Email Provider comparison from a technical point of view

The aim of this post is not to make the umpteenth comparison of email providers.
That’s always subjective, depending on our needs.
The aim here is to study compliance with sending standards from a technical point of view.
Personally, I couldn’t find any comparisons, so to choose my future provider, I went on a provider tour.

And I was quite surprised…

[Read More]

A simple architecture to manage data seeds with Entity Framework Code First 5.0

Entity Framework Code First has introduced many included features that most team projects had to build manually, such as code and database schema synchronisation during the developement lifecycle using initializers (eg. DbMigrations) and data seeding. To use the later, the developer simply has to override the Seed Method of the initializer he has chosen to use. But the developer (or the architect) still has the responsibility to ensure that the seed code is well made, and easily maintainable. With a number of EF entities of dozens or even hundreds of table on most medium sized projects, the developer will have to think of an architecture that can divide the complexity of seeding the whole database. This article will focus on one architecture that can handle the complexity of the seed process without being too hard to use by the developer. As often, simpler is better.

[Read More]
C# 

Web service management using T4 – Contracts generation (1/2)

In previous post about Model description, we discussed how we could describe webservices using a common XML file that will be used by the tools we will be writing in order to manage them. It is now time to start dealing with all the repetitive tasks and makes your hand dirty. We will start with a basic template to output all contracts in one C# file directly, and we will move to a cleaner solution as tutorials will go.

[Read More]