This commit is contained in:
ajcvickers 2014-07-24 14:19:39 -07:00
parent 50a32f0cb8
commit fec7e55cbf
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ namespace Microsoft.AspNet.Identity.EntityFramework.InMemory.Test
{
builder.Entity<TUser>(b =>
{
b.Key(u => u.Id)
b.Key(u => u.Id);
b.Property(u => u.UserName);
b.ToTable("AspNetUsers");
});