Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active July 4, 2021 09:31
Show Gist options
  • Save gistlyn/c7223e2f83d044b5eca7248bd6f9ec12 to your computer and use it in GitHub Desktop.
Save gistlyn/c7223e2f83d044b5eca7248bd6f9ec12 to your computer and use it in GitHub Desktop.
autoquery-autogen
// Connect your database
container.AddSingleton<IDbConnectionFactory>(c => new OrmLiteConnectionFactory(
MapProjectPath("~/northwind.sqlite"), SqliteDialect.Provider));
// Configure AutoQuery to Generate CRUD services
Plugins.Add(new AutoQueryFeature {
MaxLimit = 1000,
GenerateCrudServices = new GenerateCrudServices {
AutoRegister = true
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment