nhibernate / NHibernate.AspNetCore.Identity

ASP.NET Core Identity Provider for NHibernate
GNU Lesser General Public License v2.1
64 stars 13 forks source link

Table names in mapping does not match table names in SQL scripts #22

Closed XGRATION closed 4 years ago

XGRATION commented 4 years ago

The table names in mapping does not match table names in SQL scripts. I would think the underscores (_) should be removed or?

XGRATION commented 4 years ago

The table names in mapping does not match table names in SQL scripts. I would think the underscores (_) should be removed or?

Ahh.. my fault! There are different mapping profiles for MS SQL and Postgre SQL.

bruuteuzius commented 4 years ago

Correct :-) postgresql can't have uppercasing

XGRATION commented 4 years ago

But I think the table in IdentityUserClaimMappingMsSql should be named AspNetUserClaims to match the table creation scripts and the default naming for "Identity".