using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Data.Entity; namespace MapUsersSample { public class UserContext : DbContext { public DbSet Users { get; set; } public DbSet Connections { get; set; } } public class User { [Key] public string UserName { get; set; } public ICollection Connections { get; set; } } public class Connection { public string ConnectionID { get; set; } public string UserAgent { get; set; } public bool Connected { get; set; } } }