I’ve got a plain setup:
appHost.Plugins.Add(new AutoQueryFeature
{
MaxLimit = 1000,
GenerateCrudServices = new GenerateCrudServices
{
ExcludeTables = { "Asset", "AssetVersioned", "ConfigurationItem", "ConfigurationItemVersioned", "ConfigurationItemDetail", "ConfigurationItemDetailVersioned" },
AutoRegister = true
}
}
Except for the explicitly excluded tables, there are many tables it doesn’t find.
I’ve logged onto the Sql Server (SqlServer2019Dialect.Provider
) using the same connection string available to OrmLite, and I can see all the tables and their columns.
Any tips to how I could debug this?