You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could we support pluralized table names for all the generic methods like Insert<T>? I see it just defaults to a table with a name the same as type T. I prefer using Users as my table names instead of User.
We could use an attribute on the T classes, like TableName("Users") that is checked before the default is used. What do you think? Or go down a fluent-style declaration in Startup.cs with some extension methods. Or support both even.
The text was updated successfully, but these errors were encountered:
Could we support pluralized table names for all the generic methods like
Insert<T>
? I see it just defaults to a table with a name the same as type T. I prefer usingUsers
as my table names instead ofUser
.We could use an attribute on the
T
classes, likeTableName("Users")
that is checked before the default is used. What do you think? Or go down a fluent-style declaration in Startup.cs with some extension methods. Or support both even.The text was updated successfully, but these errors were encountered: