Skip to main content

CreateCrudServices

Instruction for which AutoCrud Services to generate

Assembly: ServiceStack.Server.dll
View Source
Declaration
public class CreateCrudServices : object, IMeta

Properties

IncludeCrudOperations

Which AutoCrud Operations to include:

  • Query
  • Create
  • Update
  • Patch
  • Delete
View Source
Declaration
public List<string> IncludeCrudOperations { get; set; }

Schema

The RDBMS Schema you want AutoQuery Services generated for

View Source
Declaration
public string Schema { get; set; }

NamedConnection

The NamedConnection you want AutoQuery Services generated for

View Source
Declaration
public string NamedConnection { get; set; }

AddNamespaces

Include additional C# namespaces

View Source
Declaration
public List<string> AddNamespaces { get; set; }

IncludeTables

Allow List to specify only the tables you would like to have code-generated

View Source
Declaration
public List<string> IncludeTables { get; set; }

ExcludeTables

Block list to specify which tables you would like excluded from being generated

View Source
Declaration
public List<string> ExcludeTables { get; set; }

IncludeTypes

Allow List to specify only the types you would like to have code-generated, see: https://docs.servicestack.net/csharp-add-servicestack-reference#includetypes

View Source
Declaration
public List<string> IncludeTypes { get; set; }

ExcludeTypes

Block list to specify which types you would like excluded from being generated. see: https://docs.servicestack.net/csharp-add-servicestack-reference#excludetypes

View Source
Declaration
public List<string> ExcludeTypes { get; set; }

Meta

View Source
Declaration
public Dictionary<string, string> Meta { get; set; }

Implements