ASP.NET Identity - Multiple object sets per type are not supported

后端 未结 4 663
栀梦
栀梦 2020-11-27 17:46

I got an error using ASP.NET Identity in my app.

Multiple object sets per type are not supported. The object sets \'Identity Users\' and \'Users\'

4条回答
  •  鱼传尺愫
    2020-11-27 18:08

    Comment the new generated Dbset from identity model class like below

    // public System.Data.Entity.DbSet ApplicationUsers { get; set; }
    

提交回复
热议问题