Skip to main content

Entity Framework 4 Enum support in Linq

· 3 min read
Founder, Asynkron Systems

As many of you might know, Entity Framework 4 still lacks support to map enum properties.
There are countless of more or less worthless workarounds, everything from exposing constants integers in a static class to make it look like an enum to totally insane generics tricks with operator overloading.

Synthetic life unveiled

· One min read
Founder, Asynkron Systems

This is just a must see.
Scientists have designed a DNA sequence in a computer and managed to create real, self replicating cell, with it’s own email address encoded in the DNA 🙂

Plastic – Added generator support

· 2 min read
Founder, Asynkron Systems

I’ve added generator support to my toy language “Plastic”.
It’s quite funny how easy it is to implement some language features once you understand how they work behind the scenes.
At first, I thought generators would be extremely hard to implement, requiring AST transformations to build state machines a’la C# for enumerable methods.