C# Class nHydrate.Dsl.ValidationHelper

Mostrar archivo Open project: nHydrate/nHydrate

Public Properties

Property Type Description
ErrorTextAssociativeTableMustHave2Relations string
ErrorTextAssociativeTableNotImmutable string
ErrorTextAssociativeTableNotInherited string
ErrorTextAuditFieldMatchBase string
ErrorTextAuditFieldsNotUnique string
ErrorTextBaseTableNonGenerated string
ErrorTextChildTableRelationIdentity string
ErrorTextClusteredGuid string
ErrorTextColumnCannotHaveDefault string
ErrorTextColumnDecimalPrecision string
ErrorTextColumnDecimalScale string
ErrorTextColumnDefault string
ErrorTextColumnDuplicateNameMatch string
ErrorTextColumnIdentityHasDefault string
ErrorTextColumnInvalidDefault string
ErrorTextColumnLengthNotZero string
ErrorTextColumnMaxLengthViolation string
ErrorTextColumnMaxNotSupported string
ErrorTextColumnNoRange4Identity string
ErrorTextColumnReadonlyNeedsDefault string
ErrorTextColumnsRequired string
ErrorTextComponentMustHaveTablePK string
ErrorTextComponentProjectSameName string
ErrorTextComponentTableDuplicateName string
ErrorTextComputeColumnNoFormula string
ErrorTextComputeColumnNoPK string
ErrorTextComputeNonColumnHaveFormula string
ErrorTextConflictingRelationships string
ErrorTextDataTypeNotSupported string
ErrorTextDateTimeDeprecated string
ErrorTextDecimalColumnTooSmall string
ErrorTextDuplicateCodeFacade string
ErrorTextDuplicateName string
ErrorTextDuplicateParameters string
ErrorTextDuplicateRelation string
ErrorTextDuplicateRelationFullHierarchy string
ErrorTextDuplicateRoleName string
ErrorTextDuplicateStaticData string
ErrorTextEntityIndexInvalid string
ErrorTextEntityIndexInvalidLength string
ErrorTextEntityIndexIsDuplicate string
ErrorTextEntityIndexIsPossibleDuplicate string
ErrorTextEntityIndexMultipleClustered string
ErrorTextExistingSPNeedsDBName string
ErrorTextFKNeedIndex string
ErrorTextFunctionReturnVarForTabelFunc string
ErrorTextFunctionReturnVarNotValid string
ErrorTextFunctionScalerMultipleFields string
ErrorTextFunctionZeroFields string
ErrorTextGeneratedCRUD_EF4 string
ErrorTextIdentityOnlyOnePerTable string
ErrorTextIdentityPKNotOnlyKey string
ErrorTextIndexNotInModule string
ErrorTextInheritFieldOnly1Identity string
ErrorTextInheritTopMostMustBeIndentity string
ErrorTextInvalidCodeFacade string
ErrorTextInvalidCompany string
ErrorTextInvalidCompanyAbbreviation string
ErrorTextInvalidDatabase string
ErrorTextInvalidFieldIdentifierView string
ErrorTextInvalidIdentifier string
ErrorTextInvalidIdentifierComposite string
ErrorTextInvalidIdentifierFuncField string
ErrorTextInvalidIdentifierFuncParam string
ErrorTextInvalidIdentifierModule string
ErrorTextInvalidIdentifierSP string
ErrorTextInvalidIdentifierSPField string
ErrorTextInvalidIdentifierSPParam string
ErrorTextInvalidIdentifierSelectCommand string
ErrorTextInvalidIdentifierView string
ErrorTextInvalidIdentifierViewField string
ErrorTextInvalidIdentityColumn string
ErrorTextInvalidInheritance string
ErrorTextInvalidNamespace string
ErrorTextInvalidProject string
ErrorTextInvalidStoredProcPrefix string
ErrorTextMetadataInvalid string
ErrorTextMinMaxValueInvalidType string
ErrorTextMinMaxValueMismatch string
ErrorTextModuleContainIndexNotFields string
ErrorTextModuleEntityFieldMismatch string
ErrorTextModuleEntityPKMismatch string
ErrorTextModuleIsEmpty string
ErrorTextModuleItemNotInModule string
ErrorTextModulesNotUnique string
ErrorTextMultiFieldRelationsMapDifferentFields string
ErrorTextMutableInherit string
ErrorTextNameConfictsWithGeneratedCode string
ErrorTextNoColumns string
ErrorTextNoModules string
ErrorTextNoPrimaryKey string
ErrorTextNoTables string
ErrorTextNullableFieldHasDefault string
ErrorTextNullableFieldHasDefaultWithRelation string
ErrorTextOnlyOneTimestamp string
ErrorTextOutputTargetInvalid string
ErrorTextPackageRequiresDisplayName string
ErrorTextParentTableNoRelation string
ErrorTextPreDefinedNameField string
ErrorTextPrimaryKeyNull string
ErrorTextRelationCausesNameConflict string
ErrorTextRelationDuplicate string
ErrorTextRelationFieldDuplicated string
ErrorTextRelationFieldNotMatchAssociatedTable string
ErrorTextRelationM_NNameDuplication string
ErrorTextRelationM_NRoleMismatch string
ErrorTextRelationMustHaveParentChild string
ErrorTextRelationNeedUniqueFields string
ErrorTextRelationNoFields string
ErrorTextRelationshipMustBeInModule string
ErrorTextRelationshipMustHaveFields string
ErrorTextRelationshipTypeMismatch string
ErrorTextRoleNoStartNumber string
ErrorTextSQLRequiredFunction string
ErrorTextSQLRequiredSelectCommand string
ErrorTextSQLRequiredStoredProcedure string
ErrorTextSQLRequiredView string
ErrorTextSecurityFunction string
ErrorTextSelfRefChildColumnPK string
ErrorTextSelfRefMustHaveRole string
ErrorTextSelfRefOnlyOne string
ErrorTextStoredProcNoColumns string
ErrorTextTableAssociativeNeedsNonOverlappingColumns string
ErrorTextTableAssociativeNeedsOnlyPK string
ErrorTextTableAssociativeNoAuditTracking string
ErrorTextTableAssociativeNoCRUDAudit string
ErrorTextTableBadStaticData string
ErrorTextTableColumnNameMatch string
ErrorTextTableColumnNonPrimaryRelationNotUnique string
ErrorTextTableComponentNoColumns string
ErrorTextTableCompositeNoColumns string
ErrorTextTableDoesNotAllowModification string
ErrorTextTableInheritMustContainParentInModule string
ErrorTextTableNotHave1IdentityOnly string
ErrorTextTableProjectSameName string
ErrorTextTenantTypeTable string
ErrorTextTenantTypeTableTenantColumnMatch string
ErrorTextTypeTableIsMutable string
ErrorTextTypeTableNoData string
ErrorTextTypeTablePrimaryKey string
ErrorTextTypeTableStaticDataEmpty string
ErrorTextTypeTableTextField string
ErrorTextVersionNegative string
WarningErrorModuleRuleInvalid string
WarningErrorModuleRuleLogicFail string
WarningErrorModuleRuleNoDependentModule string
WarningTextModuleEntityPKMismatch string
WarningTextNeedParameters string
WarningTextRelationNotInModule string
WarningTextRelationNotInModuleWithParentChildTables string
WarningTextSelectCommandNeedParameters string
WarningTextTableColumnNonPrimaryRelationNotUnique string

Public Methods

Method Description
IsReservedWord ( string name ) : bool

Determines if the name is a reserved word

IsValidNamespace ( string namespaceValue ) : bool
MakeCodeIdentifer ( string name ) : string
MakeCodeIdentifer ( string name, string invalidReplacement ) : string
MakeDatabaseIdentifier ( string name ) : string
MakeDatabaseScriptIdentifier ( string name ) : string
ValidCodeIdentifier ( string name ) : bool

Determines if the specified value is a valid C# token

ValidDatabaseIdenitifer ( string name ) : bool
ValidEntityName ( string name ) : bool
ValidFieldIdentifier ( string name ) : bool

Determines if the specified value matches any reserved words for objects

Method Details

IsReservedWord() public static method

Determines if the name is a reserved word
public static IsReservedWord ( string name ) : bool
name string
return bool

IsValidNamespace() public static method

public static IsValidNamespace ( string namespaceValue ) : bool
namespaceValue string
return bool

MakeCodeIdentifer() public static method

public static MakeCodeIdentifer ( string name ) : string
name string
return string

MakeCodeIdentifer() public static method

public static MakeCodeIdentifer ( string name, string invalidReplacement ) : string
name string
invalidReplacement string
return string

MakeDatabaseIdentifier() public static method

public static MakeDatabaseIdentifier ( string name ) : string
name string
return string

MakeDatabaseScriptIdentifier() public static method

public static MakeDatabaseScriptIdentifier ( string name ) : string
name string
return string

ValidCodeIdentifier() public static method

Determines if the specified value is a valid C# token
public static ValidCodeIdentifier ( string name ) : bool
name string
return bool

ValidDatabaseIdenitifer() public static method

public static ValidDatabaseIdenitifer ( string name ) : bool
name string
return bool

ValidEntityName() public static method

public static ValidEntityName ( string name ) : bool
name string
return bool

ValidFieldIdentifier() public static method

Determines if the specified value matches any reserved words for objects
public static ValidFieldIdentifier ( string name ) : bool
name string
return bool

Property Details

ErrorTextAssociativeTableMustHave2Relations public_oe static_oe property

public static string ErrorTextAssociativeTableMustHave2Relations
return string

ErrorTextAssociativeTableNotImmutable public_oe static_oe property

public static string ErrorTextAssociativeTableNotImmutable
return string

ErrorTextAssociativeTableNotInherited public_oe static_oe property

public static string ErrorTextAssociativeTableNotInherited
return string

ErrorTextAuditFieldMatchBase public_oe static_oe property

public static string ErrorTextAuditFieldMatchBase
return string

ErrorTextAuditFieldsNotUnique public_oe static_oe property

public static string ErrorTextAuditFieldsNotUnique
return string

ErrorTextBaseTableNonGenerated public_oe static_oe property

public static string ErrorTextBaseTableNonGenerated
return string

ErrorTextChildTableRelationIdentity public_oe static_oe property

public static string ErrorTextChildTableRelationIdentity
return string

ErrorTextClusteredGuid public_oe static_oe property

public static string ErrorTextClusteredGuid
return string

ErrorTextColumnCannotHaveDefault public_oe static_oe property

public static string ErrorTextColumnCannotHaveDefault
return string

ErrorTextColumnDecimalPrecision public_oe static_oe property

public static string ErrorTextColumnDecimalPrecision
return string

ErrorTextColumnDecimalScale public_oe static_oe property

public static string ErrorTextColumnDecimalScale
return string

ErrorTextColumnDefault public_oe static_oe property

public static string ErrorTextColumnDefault
return string

ErrorTextColumnDuplicateNameMatch public_oe static_oe property

public static string ErrorTextColumnDuplicateNameMatch
return string

ErrorTextColumnIdentityHasDefault public_oe static_oe property

public static string ErrorTextColumnIdentityHasDefault
return string

ErrorTextColumnInvalidDefault public_oe static_oe property

public static string ErrorTextColumnInvalidDefault
return string

ErrorTextColumnLengthNotZero public_oe static_oe property

public static string ErrorTextColumnLengthNotZero
return string

ErrorTextColumnMaxLengthViolation public_oe static_oe property

public static string ErrorTextColumnMaxLengthViolation
return string

ErrorTextColumnMaxNotSupported public_oe static_oe property

public static string ErrorTextColumnMaxNotSupported
return string

ErrorTextColumnNoRange4Identity public_oe static_oe property

public static string ErrorTextColumnNoRange4Identity
return string

ErrorTextColumnReadonlyNeedsDefault public_oe static_oe property

public static string ErrorTextColumnReadonlyNeedsDefault
return string

ErrorTextColumnsRequired public_oe static_oe property

public static string ErrorTextColumnsRequired
return string

ErrorTextComponentMustHaveTablePK public_oe static_oe property

public static string ErrorTextComponentMustHaveTablePK
return string

ErrorTextComponentProjectSameName public_oe static_oe property

public static string ErrorTextComponentProjectSameName
return string

ErrorTextComponentTableDuplicateName public_oe static_oe property

public static string ErrorTextComponentTableDuplicateName
return string

ErrorTextComputeColumnNoFormula public_oe static_oe property

public static string ErrorTextComputeColumnNoFormula
return string

ErrorTextComputeColumnNoPK public_oe static_oe property

public static string ErrorTextComputeColumnNoPK
return string

ErrorTextComputeNonColumnHaveFormula public_oe static_oe property

public static string ErrorTextComputeNonColumnHaveFormula
return string

ErrorTextConflictingRelationships public_oe static_oe property

public static string ErrorTextConflictingRelationships
return string

ErrorTextDataTypeNotSupported public_oe static_oe property

public static string ErrorTextDataTypeNotSupported
return string

ErrorTextDateTimeDeprecated public_oe static_oe property

public static string ErrorTextDateTimeDeprecated
return string

ErrorTextDecimalColumnTooSmall public_oe static_oe property

public static string ErrorTextDecimalColumnTooSmall
return string

ErrorTextDuplicateCodeFacade public_oe static_oe property

public static string ErrorTextDuplicateCodeFacade
return string

ErrorTextDuplicateName public_oe static_oe property

public static string ErrorTextDuplicateName
return string

ErrorTextDuplicateParameters public_oe static_oe property

public static string ErrorTextDuplicateParameters
return string

ErrorTextDuplicateRelation public_oe static_oe property

public static string ErrorTextDuplicateRelation
return string

ErrorTextDuplicateRelationFullHierarchy public_oe static_oe property

public static string ErrorTextDuplicateRelationFullHierarchy
return string

ErrorTextDuplicateRoleName public_oe static_oe property

public static string ErrorTextDuplicateRoleName
return string

ErrorTextDuplicateStaticData public_oe static_oe property

public static string ErrorTextDuplicateStaticData
return string

ErrorTextEntityIndexInvalid public_oe static_oe property

public static string ErrorTextEntityIndexInvalid
return string

ErrorTextEntityIndexInvalidLength public_oe static_oe property

public static string ErrorTextEntityIndexInvalidLength
return string

ErrorTextEntityIndexIsDuplicate public_oe static_oe property

public static string ErrorTextEntityIndexIsDuplicate
return string

ErrorTextEntityIndexIsPossibleDuplicate public_oe static_oe property

public static string ErrorTextEntityIndexIsPossibleDuplicate
return string

ErrorTextEntityIndexMultipleClustered public_oe static_oe property

public static string ErrorTextEntityIndexMultipleClustered
return string

ErrorTextExistingSPNeedsDBName public_oe static_oe property

public static string ErrorTextExistingSPNeedsDBName
return string

ErrorTextFKNeedIndex public_oe static_oe property

public static string ErrorTextFKNeedIndex
return string

ErrorTextFunctionReturnVarForTabelFunc public_oe static_oe property

public static string ErrorTextFunctionReturnVarForTabelFunc
return string

ErrorTextFunctionReturnVarNotValid public_oe static_oe property

public static string ErrorTextFunctionReturnVarNotValid
return string

ErrorTextFunctionScalerMultipleFields public_oe static_oe property

public static string ErrorTextFunctionScalerMultipleFields
return string

ErrorTextFunctionZeroFields public_oe static_oe property

public static string ErrorTextFunctionZeroFields
return string

ErrorTextGeneratedCRUD_EF4 public_oe static_oe property

public static string ErrorTextGeneratedCRUD_EF4
return string

ErrorTextIdentityOnlyOnePerTable public_oe static_oe property

public static string ErrorTextIdentityOnlyOnePerTable
return string

ErrorTextIdentityPKNotOnlyKey public_oe static_oe property

public static string ErrorTextIdentityPKNotOnlyKey
return string

ErrorTextIndexNotInModule public_oe static_oe property

public static string ErrorTextIndexNotInModule
return string

ErrorTextInheritFieldOnly1Identity public_oe static_oe property

public static string ErrorTextInheritFieldOnly1Identity
return string

ErrorTextInheritTopMostMustBeIndentity public_oe static_oe property

public static string ErrorTextInheritTopMostMustBeIndentity
return string

ErrorTextInvalidCodeFacade public_oe static_oe property

public static string ErrorTextInvalidCodeFacade
return string

ErrorTextInvalidCompany public_oe static_oe property

public static string ErrorTextInvalidCompany
return string

ErrorTextInvalidCompanyAbbreviation public_oe static_oe property

public static string ErrorTextInvalidCompanyAbbreviation
return string

ErrorTextInvalidDatabase public_oe static_oe property

public static string ErrorTextInvalidDatabase
return string

ErrorTextInvalidFieldIdentifierView public_oe static_oe property

public static string ErrorTextInvalidFieldIdentifierView
return string

ErrorTextInvalidIdentifier public_oe static_oe property

public static string ErrorTextInvalidIdentifier
return string

ErrorTextInvalidIdentifierComposite public_oe static_oe property

public static string ErrorTextInvalidIdentifierComposite
return string

ErrorTextInvalidIdentifierFuncField public_oe static_oe property

public static string ErrorTextInvalidIdentifierFuncField
return string

ErrorTextInvalidIdentifierFuncParam public_oe static_oe property

public static string ErrorTextInvalidIdentifierFuncParam
return string

ErrorTextInvalidIdentifierModule public_oe static_oe property

public static string ErrorTextInvalidIdentifierModule
return string

ErrorTextInvalidIdentifierSP public_oe static_oe property

public static string ErrorTextInvalidIdentifierSP
return string

ErrorTextInvalidIdentifierSPField public_oe static_oe property

public static string ErrorTextInvalidIdentifierSPField
return string

ErrorTextInvalidIdentifierSPParam public_oe static_oe property

public static string ErrorTextInvalidIdentifierSPParam
return string

ErrorTextInvalidIdentifierSelectCommand public_oe static_oe property

public static string ErrorTextInvalidIdentifierSelectCommand
return string

ErrorTextInvalidIdentifierView public_oe static_oe property

public static string ErrorTextInvalidIdentifierView
return string

ErrorTextInvalidIdentifierViewField public_oe static_oe property

public static string ErrorTextInvalidIdentifierViewField
return string

ErrorTextInvalidIdentityColumn public_oe static_oe property

public static string ErrorTextInvalidIdentityColumn
return string

ErrorTextInvalidInheritance public_oe static_oe property

public static string ErrorTextInvalidInheritance
return string

ErrorTextInvalidNamespace public_oe static_oe property

public static string ErrorTextInvalidNamespace
return string

ErrorTextInvalidProject public_oe static_oe property

public static string ErrorTextInvalidProject
return string

ErrorTextInvalidStoredProcPrefix public_oe static_oe property

public static string ErrorTextInvalidStoredProcPrefix
return string

ErrorTextMetadataInvalid public_oe static_oe property

public static string ErrorTextMetadataInvalid
return string

ErrorTextMinMaxValueInvalidType public_oe static_oe property

public static string ErrorTextMinMaxValueInvalidType
return string

ErrorTextMinMaxValueMismatch public_oe static_oe property

public static string ErrorTextMinMaxValueMismatch
return string

ErrorTextModuleContainIndexNotFields public_oe static_oe property

public static string ErrorTextModuleContainIndexNotFields
return string

ErrorTextModuleEntityFieldMismatch public_oe static_oe property

public static string ErrorTextModuleEntityFieldMismatch
return string

ErrorTextModuleEntityPKMismatch public_oe static_oe property

public static string ErrorTextModuleEntityPKMismatch
return string

ErrorTextModuleIsEmpty public_oe static_oe property

public static string ErrorTextModuleIsEmpty
return string

ErrorTextModuleItemNotInModule public_oe static_oe property

public static string ErrorTextModuleItemNotInModule
return string

ErrorTextModulesNotUnique public_oe static_oe property

public static string ErrorTextModulesNotUnique
return string

ErrorTextMultiFieldRelationsMapDifferentFields public_oe static_oe property

public static string ErrorTextMultiFieldRelationsMapDifferentFields
return string

ErrorTextMutableInherit public_oe static_oe property

public static string ErrorTextMutableInherit
return string

ErrorTextNameConfictsWithGeneratedCode public_oe static_oe property

public static string ErrorTextNameConfictsWithGeneratedCode
return string

ErrorTextNoColumns public_oe static_oe property

public static string ErrorTextNoColumns
return string

ErrorTextNoModules public_oe static_oe property

public static string ErrorTextNoModules
return string

ErrorTextNoPrimaryKey public_oe static_oe property

public static string ErrorTextNoPrimaryKey
return string

ErrorTextNoTables public_oe static_oe property

public static string ErrorTextNoTables
return string

ErrorTextNullableFieldHasDefault public_oe static_oe property

public static string ErrorTextNullableFieldHasDefault
return string

ErrorTextNullableFieldHasDefaultWithRelation public_oe static_oe property

public static string ErrorTextNullableFieldHasDefaultWithRelation
return string

ErrorTextOnlyOneTimestamp public_oe static_oe property

public static string ErrorTextOnlyOneTimestamp
return string

ErrorTextOutputTargetInvalid public_oe static_oe property

public static string ErrorTextOutputTargetInvalid
return string

ErrorTextPackageRequiresDisplayName public_oe static_oe property

public static string ErrorTextPackageRequiresDisplayName
return string

ErrorTextParentTableNoRelation public_oe static_oe property

public static string ErrorTextParentTableNoRelation
return string

ErrorTextPreDefinedNameField public_oe static_oe property

public static string ErrorTextPreDefinedNameField
return string

ErrorTextPrimaryKeyNull public_oe static_oe property

public static string ErrorTextPrimaryKeyNull
return string

ErrorTextRelationCausesNameConflict public_oe static_oe property

public static string ErrorTextRelationCausesNameConflict
return string

ErrorTextRelationDuplicate public_oe static_oe property

public static string ErrorTextRelationDuplicate
return string

ErrorTextRelationFieldDuplicated public_oe static_oe property

public static string ErrorTextRelationFieldDuplicated
return string

ErrorTextRelationFieldNotMatchAssociatedTable public_oe static_oe property

public static string ErrorTextRelationFieldNotMatchAssociatedTable
return string

ErrorTextRelationM_NNameDuplication public_oe static_oe property

public static string ErrorTextRelationM_NNameDuplication
return string

ErrorTextRelationM_NRoleMismatch public_oe static_oe property

public static string ErrorTextRelationM_NRoleMismatch
return string

ErrorTextRelationMustHaveParentChild public_oe static_oe property

public static string ErrorTextRelationMustHaveParentChild
return string

ErrorTextRelationNeedUniqueFields public_oe static_oe property

public static string ErrorTextRelationNeedUniqueFields
return string

ErrorTextRelationNoFields public_oe static_oe property

public static string ErrorTextRelationNoFields
return string

ErrorTextRelationshipMustBeInModule public_oe static_oe property

public static string ErrorTextRelationshipMustBeInModule
return string

ErrorTextRelationshipMustHaveFields public_oe static_oe property

public static string ErrorTextRelationshipMustHaveFields
return string

ErrorTextRelationshipTypeMismatch public_oe static_oe property

public static string ErrorTextRelationshipTypeMismatch
return string

ErrorTextRoleNoStartNumber public_oe static_oe property

public static string ErrorTextRoleNoStartNumber
return string

ErrorTextSQLRequiredFunction public_oe static_oe property

public static string ErrorTextSQLRequiredFunction
return string

ErrorTextSQLRequiredSelectCommand public_oe static_oe property

public static string ErrorTextSQLRequiredSelectCommand
return string

ErrorTextSQLRequiredStoredProcedure public_oe static_oe property

public static string ErrorTextSQLRequiredStoredProcedure
return string

ErrorTextSQLRequiredView public_oe static_oe property

public static string ErrorTextSQLRequiredView
return string

ErrorTextSecurityFunction public_oe static_oe property

public static string ErrorTextSecurityFunction
return string

ErrorTextSelfRefChildColumnPK public_oe static_oe property

public static string ErrorTextSelfRefChildColumnPK
return string

ErrorTextSelfRefMustHaveRole public_oe static_oe property

public static string ErrorTextSelfRefMustHaveRole
return string

ErrorTextSelfRefOnlyOne public_oe static_oe property

public static string ErrorTextSelfRefOnlyOne
return string

ErrorTextStoredProcNoColumns public_oe static_oe property

public static string ErrorTextStoredProcNoColumns
return string

ErrorTextTableAssociativeNeedsNonOverlappingColumns public_oe static_oe property

public static string ErrorTextTableAssociativeNeedsNonOverlappingColumns
return string

ErrorTextTableAssociativeNeedsOnlyPK public_oe static_oe property

public static string ErrorTextTableAssociativeNeedsOnlyPK
return string

ErrorTextTableAssociativeNoAuditTracking public_oe static_oe property

public static string ErrorTextTableAssociativeNoAuditTracking
return string

ErrorTextTableAssociativeNoCRUDAudit public_oe static_oe property

public static string ErrorTextTableAssociativeNoCRUDAudit
return string

ErrorTextTableBadStaticData public_oe static_oe property

public static string ErrorTextTableBadStaticData
return string

ErrorTextTableColumnNameMatch public_oe static_oe property

public static string ErrorTextTableColumnNameMatch
return string

ErrorTextTableColumnNonPrimaryRelationNotUnique public_oe static_oe property

public static string ErrorTextTableColumnNonPrimaryRelationNotUnique
return string

ErrorTextTableComponentNoColumns public_oe static_oe property

public static string ErrorTextTableComponentNoColumns
return string

ErrorTextTableCompositeNoColumns public_oe static_oe property

public static string ErrorTextTableCompositeNoColumns
return string

ErrorTextTableDoesNotAllowModification public_oe static_oe property

public static string ErrorTextTableDoesNotAllowModification
return string

ErrorTextTableInheritMustContainParentInModule public_oe static_oe property

public static string ErrorTextTableInheritMustContainParentInModule
return string

ErrorTextTableNotHave1IdentityOnly public_oe static_oe property

public static string ErrorTextTableNotHave1IdentityOnly
return string

ErrorTextTableProjectSameName public_oe static_oe property

public static string ErrorTextTableProjectSameName
return string

ErrorTextTenantTypeTable public_oe static_oe property

public static string ErrorTextTenantTypeTable
return string

ErrorTextTenantTypeTableTenantColumnMatch public_oe static_oe property

public static string ErrorTextTenantTypeTableTenantColumnMatch
return string

ErrorTextTypeTableIsMutable public_oe static_oe property

public static string ErrorTextTypeTableIsMutable
return string

ErrorTextTypeTableNoData public_oe static_oe property

public static string ErrorTextTypeTableNoData
return string

ErrorTextTypeTablePrimaryKey public_oe static_oe property

public static string ErrorTextTypeTablePrimaryKey
return string

ErrorTextTypeTableStaticDataEmpty public_oe static_oe property

public static string ErrorTextTypeTableStaticDataEmpty
return string

ErrorTextTypeTableTextField public_oe static_oe property

public static string ErrorTextTypeTableTextField
return string

ErrorTextVersionNegative public_oe static_oe property

public static string ErrorTextVersionNegative
return string

WarningErrorModuleRuleInvalid public_oe static_oe property

public static string WarningErrorModuleRuleInvalid
return string

WarningErrorModuleRuleLogicFail public_oe static_oe property

public static string WarningErrorModuleRuleLogicFail
return string

WarningErrorModuleRuleNoDependentModule public_oe static_oe property

public static string WarningErrorModuleRuleNoDependentModule
return string

WarningTextModuleEntityPKMismatch public_oe static_oe property

public static string WarningTextModuleEntityPKMismatch
return string

WarningTextNeedParameters public_oe static_oe property

public static string WarningTextNeedParameters
return string

WarningTextRelationNotInModule public_oe static_oe property

public static string WarningTextRelationNotInModule
return string

WarningTextRelationNotInModuleWithParentChildTables public_oe static_oe property

public static string WarningTextRelationNotInModuleWithParentChildTables
return string

WarningTextSelectCommandNeedParameters public_oe static_oe property

public static string WarningTextSelectCommandNeedParameters
return string

WarningTextTableColumnNonPrimaryRelationNotUnique public_oe static_oe property

public static string WarningTextTableColumnNonPrimaryRelationNotUnique
return string