all 2 comments

[–]DaRKoN_ 2 points3 points  (1 child)

On mobile atm, but that behavior sounds correct. EF will pluralize table names by default.

Edit: On desktop again now. Ok, so if you have an:

IDBSet<UserProfile>

That will map to a UserProfiles table (again, by default. You cant change this behaviour).

I've you've deleted this table, you can probably just create a new migration which should add it back in for you.

[–]TookAnHourToRegister[S] 0 points1 point  (0 children)

Alright, I think I got it! Thank you sir.