Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active March 30, 2021 09:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Configure AutoGen AutoCrud Services
dotnet add package ServiceStack.Server
using ServiceStack;
namespace MyApp
{
public class ConfigureAutoQuery : IConfigureAppHost
{
public void Configure(IAppHost appHost)
{
appHost.Plugins.Add(new AutoQueryFeature {
MaxLimit = 1000,
IncludeTotal = true,
GenerateCrudServices = new GenerateCrudServices {
AutoRegister = true,
//AddDataContractAttributes = false,
}
});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment