Skip to content

Instantly share code, notes, and snippets.

@Antaris
Antaris / BlogDbContext.cs
Last active October 18, 2016 08:32
Early work on custom type conversions for Entity Framework
public class BlogDbContext : DbContext
{
public DbSet<BlogPost> Posts { get; set; }
}