Skip to content

Instantly share code, notes, and snippets.

@wcadap
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save wcadap/aeade9ef1f2cf5b47b02 to your computer and use it in GitHub Desktop.

Select an option

Save wcadap/aeade9ef1f2cf5b47b02 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
namespace Contacts.Models
{
public class ContactContext : DbContext
{
public DbSet<Contact> Contacts { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment