Skip to main content

CrudCodeGenTypes

Assembly: ServiceStack.Server.dll
View Source
Declaration
public class CrudCodeGenTypes : NativeTypesBase, IMeta, IReturn<string>, IReturn

Properties

Include

Either 'all' to include all AutoQuery Services or 'new' to include only missing Services and Types

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

Lang

The language you want csharp typescript java kotlin swift dart vbnet fsharp typescript.d

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

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; }

AuthSecret

The Admin AuthSecret to access Service in Release mode

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

NoCache

Do not use cached DB Table Schemas, re-fetch latest

View Source
Declaration
public bool? NoCache { 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; }

Meta

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

Inherited Properties

AddDataContractAttributes

View Source
Declaration
public bool? AddDataContractAttributes { get; set; }

AddDefaultXmlNamespace

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

AddDescriptionAsComments

View Source
Declaration
public bool? AddDescriptionAsComments { get; set; }

AddGeneratedCodeAttributes

View Source
Declaration
public bool? AddGeneratedCodeAttributes { get; set; }

AddImplicitVersion

View Source
Declaration
public int? AddImplicitVersion { get; set; }

AddIndexesToDataMembers

View Source
Declaration
public bool? AddIndexesToDataMembers { get; set; }

AddModelExtensions

View Source
Declaration
public bool? AddModelExtensions { get; set; }

AddNamespaces

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

AddPropertyAccessors

View Source
Declaration
public bool? AddPropertyAccessors { get; set; }

AddResponseStatus

View Source
Declaration
public bool? AddResponseStatus { get; set; }

AddReturnMarker

View Source
Declaration
public bool? AddReturnMarker { get; set; }

AddServiceStackTypes

View Source
Declaration
public bool? AddServiceStackTypes { get; set; }

BaseClass

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

BaseUrl

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

DataClass

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

DataClassJson

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

DefaultImports

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

DefaultNamespaces

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

ExcludeGenericBaseTypes

View Source
Declaration
public bool? ExcludeGenericBaseTypes { get; set; }

ExcludeNamespace

View Source
Declaration
public bool? ExcludeNamespace { get; set; }

ExcludeTypes

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

ExportAsTypes

View Source
Declaration
public bool? ExportAsTypes { get; set; }

ExportTags

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

ExportValueTypes

View Source
Declaration
public bool? ExportValueTypes { get; set; }

GlobalNamespace

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

IncludeTypes

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

InitializeCollections

View Source
Declaration
public bool? InitializeCollections { get; set; }

MakeDataContractsExtensible

View Source
Declaration
public bool? MakeDataContractsExtensible { get; set; }

MakeInternal

View Source
Declaration
public bool? MakeInternal { get; set; }

MakePartial

View Source
Declaration
public bool? MakePartial { get; set; }

MakePropertiesOptional

View Source
Declaration
public bool? MakePropertiesOptional { get; set; }

MakeVirtual

View Source
Declaration
public bool? MakeVirtual { get; set; }

Package

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

SettersReturnThis

View Source
Declaration
public bool? SettersReturnThis { get; set; }

TreatTypesAsStrings

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

Implements