RickStrahl / Westwind.Globalization

Database driven resource localization for .NET applications
544 stars 135 forks source link

Table Schema is not really supported #210

Open DavidBiskupek-CHG opened 3 years ago

DavidBiskupek-CHG commented 3 years ago

Hi, if the Table Schema is set like this:

"DbResourceConfiguration": {
"ResourceTableName": "Schema.Tablename",
}

most of the functions will work if there is already a Table. But IsLocalizationTable will always return false.

Because of the statement in DbResourceDataManager

SELECT * FROM INFORMATION_SCHEMA.TABLES where TABLE_NAME='Schema.Tablename'

This results in a disfunctional menu. You aren't able to do those things: image

Instead there is just the create button: image