I\'m in the process of creating a new application and started out using EF6-rc1, Microsoft.AspNet.Identity.Core 1.0.0-rc1, Microsoft.AspNet.Identity.EntityFramework 1.0.0-rc
The C# version of this (in App_Code\IdentityModels.cs) is
public UserManager() : base(new UserStore<ApplicationUser>(new ApplicationDbContext())) { UserValidator = new UserValidator<ApplicationUser>(this) { AllowOnlyAlphanumericUserNames = false }; }