using System; using Microsoft.Data.Entity; using Microsoft.Data.Entity.Metadata; using Microsoft.Data.Entity.Relational.Migrations.Infrastructure; using <%= namespace %>.Models; namespace <%= namespace %>.Migrations { [ContextType(typeof(<%= namespace %>.Models.ApplicationDbContext))] public class ApplicationDbContextModelSnapshot : ModelSnapshot { public override IModel Model { get { var builder = new BasicModelBuilder(); builder.Entity("Microsoft.AspNet.Identity.IdentityRole", b => { b.Property("Id"); b.Property("Name"); b.Key("Id"); b.ForRelational().Table("AspNetRoles"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityRoleClaim`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.Property("ClaimType"); b.Property("ClaimValue"); b.Property("Id") .GenerateValueOnAdd(); b.Property("RoleId"); b.Key("Id"); b.ForRelational().Table("AspNetRoleClaims"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityUserClaim`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.Property("ClaimType"); b.Property("ClaimValue"); b.Property("Id") .GenerateValueOnAdd(); b.Property("UserId"); b.Key("Id"); b.ForRelational().Table("AspNetUserClaims"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityUserLogin`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.Property("LoginProvider"); b.Property("ProviderDisplayName"); b.Property("ProviderKey"); b.Property("UserId"); b.Key("LoginProvider", "ProviderKey"); b.ForRelational().Table("AspNetUserLogins"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityUserRole`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.Property("RoleId"); b.Property("UserId"); b.Key("UserId", "RoleId"); b.ForRelational().Table("AspNetUserRoles"); }); builder.Entity("<%= namespace %>.Models.ApplicationUser", b => { b.Property("AccessFailedCount"); b.Property("ConcurrencyStamp"); b.Property("Email"); b.Property("EmailConfirmed"); b.Property("Id"); b.Property("LockoutEnabled"); b.Property("LockoutEnd"); b.Property("NormalizedEmail-"); b.Property("NormalizedUserName"); b.Property("PasswordHash"); b.Property("PhoneNumber"); b.Property("PhoneNumberConfirmed"); b.Property("SecurityStamp"); b.Property("TwoFactorEnabled"); b.Property("UserName"); b.Key("Id"); b.ForRelational().Table("AspNetUsers"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityRoleClaim`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.ForeignKey("Microsoft.AspNet.Identity.IdentityRole", "RoleId"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityUserClaim`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.ForeignKey("<%= namespace %>.Models.ApplicationUser", "UserId"); }); builder.Entity("Microsoft.AspNet.Identity.IdentityUserLogin`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", b => { b.ForeignKey("<%= namespace %>.Models.ApplicationUser", "UserId"); }); return builder.Model; } } } }