I\'ve used default MVC template with individual authorization. After running the application it automatically creates the required Identity tables. I\'ve successfully regist
var manager = new UserManager(new UserStore(new ApplicationDbContext()));
var store = new UserStore(new ApplicationDbContext());
var ctx = store.Context;
var currentUser = manager.FindById(User.Identity.GetUserId());
pedido.Nombre = currentUser.Nombre;