C# Class nHydrate.Dsl.ValidationHelper

Afficher le fichier Open project: nHydrate/nHydrate

Méthodes publiques

Свойство 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

Méthodes publiques

Méthode 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 méthode

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

IsValidNamespace() public static méthode

public static IsValidNamespace ( string namespaceValue ) : bool
namespaceValue string
Résultat bool

MakeCodeIdentifer() public static méthode

public static MakeCodeIdentifer ( string name ) : string
name string
Résultat string

MakeCodeIdentifer() public static méthode

public static MakeCodeIdentifer ( string name, string invalidReplacement ) : string
name string
invalidReplacement string
Résultat string

MakeDatabaseIdentifier() public static méthode

public static MakeDatabaseIdentifier ( string name ) : string
name string
Résultat string

MakeDatabaseScriptIdentifier() public static méthode

public static MakeDatabaseScriptIdentifier ( string name ) : string
name string
Résultat string

ValidCodeIdentifier() public static méthode

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

ValidDatabaseIdenitifer() public static méthode

public static ValidDatabaseIdenitifer ( string name ) : bool
name string
Résultat bool

ValidEntityName() public static méthode

public static ValidEntityName ( string name ) : bool
name string
Résultat bool

ValidFieldIdentifier() public static méthode

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

Property Details

ErrorTextAssociativeTableMustHave2Relations public_oe static_oe property

public static string ErrorTextAssociativeTableMustHave2Relations
Résultat string

ErrorTextAssociativeTableNotImmutable public_oe static_oe property

public static string ErrorTextAssociativeTableNotImmutable
Résultat string

ErrorTextAssociativeTableNotInherited public_oe static_oe property

public static string ErrorTextAssociativeTableNotInherited
Résultat string

ErrorTextAuditFieldMatchBase public_oe static_oe property

public static string ErrorTextAuditFieldMatchBase
Résultat string

ErrorTextAuditFieldsNotUnique public_oe static_oe property

public static string ErrorTextAuditFieldsNotUnique
Résultat string

ErrorTextBaseTableNonGenerated public_oe static_oe property

public static string ErrorTextBaseTableNonGenerated
Résultat string

ErrorTextChildTableRelationIdentity public_oe static_oe property

public static string ErrorTextChildTableRelationIdentity
Résultat string

ErrorTextClusteredGuid public_oe static_oe property

public static string ErrorTextClusteredGuid
Résultat string

ErrorTextColumnCannotHaveDefault public_oe static_oe property

public static string ErrorTextColumnCannotHaveDefault
Résultat string

ErrorTextColumnDecimalPrecision public_oe static_oe property

public static string ErrorTextColumnDecimalPrecision
Résultat string

ErrorTextColumnDecimalScale public_oe static_oe property

public static string ErrorTextColumnDecimalScale
Résultat string

ErrorTextColumnDefault public_oe static_oe property

public static string ErrorTextColumnDefault
Résultat string

ErrorTextColumnDuplicateNameMatch public_oe static_oe property

public static string ErrorTextColumnDuplicateNameMatch
Résultat string

ErrorTextColumnIdentityHasDefault public_oe static_oe property

public static string ErrorTextColumnIdentityHasDefault
Résultat string

ErrorTextColumnInvalidDefault public_oe static_oe property

public static string ErrorTextColumnInvalidDefault
Résultat string

ErrorTextColumnLengthNotZero public_oe static_oe property

public static string ErrorTextColumnLengthNotZero
Résultat string

ErrorTextColumnMaxLengthViolation public_oe static_oe property

public static string ErrorTextColumnMaxLengthViolation
Résultat string

ErrorTextColumnMaxNotSupported public_oe static_oe property

public static string ErrorTextColumnMaxNotSupported
Résultat string

ErrorTextColumnNoRange4Identity public_oe static_oe property

public static string ErrorTextColumnNoRange4Identity
Résultat string

ErrorTextColumnReadonlyNeedsDefault public_oe static_oe property

public static string ErrorTextColumnReadonlyNeedsDefault
Résultat string

ErrorTextColumnsRequired public_oe static_oe property

public static string ErrorTextColumnsRequired
Résultat string

ErrorTextComponentMustHaveTablePK public_oe static_oe property

public static string ErrorTextComponentMustHaveTablePK
Résultat string

ErrorTextComponentProjectSameName public_oe static_oe property

public static string ErrorTextComponentProjectSameName
Résultat string

ErrorTextComponentTableDuplicateName public_oe static_oe property

public static string ErrorTextComponentTableDuplicateName
Résultat string

ErrorTextComputeColumnNoFormula public_oe static_oe property

public static string ErrorTextComputeColumnNoFormula
Résultat string

ErrorTextComputeColumnNoPK public_oe static_oe property

public static string ErrorTextComputeColumnNoPK
Résultat string

ErrorTextComputeNonColumnHaveFormula public_oe static_oe property

public static string ErrorTextComputeNonColumnHaveFormula
Résultat string

ErrorTextConflictingRelationships public_oe static_oe property

public static string ErrorTextConflictingRelationships
Résultat string

ErrorTextDataTypeNotSupported public_oe static_oe property

public static string ErrorTextDataTypeNotSupported
Résultat string

ErrorTextDateTimeDeprecated public_oe static_oe property

public static string ErrorTextDateTimeDeprecated
Résultat string

ErrorTextDecimalColumnTooSmall public_oe static_oe property

public static string ErrorTextDecimalColumnTooSmall
Résultat string

ErrorTextDuplicateCodeFacade public_oe static_oe property

public static string ErrorTextDuplicateCodeFacade
Résultat string

ErrorTextDuplicateName public_oe static_oe property

public static string ErrorTextDuplicateName
Résultat string

ErrorTextDuplicateParameters public_oe static_oe property

public static string ErrorTextDuplicateParameters
Résultat string

ErrorTextDuplicateRelation public_oe static_oe property

public static string ErrorTextDuplicateRelation
Résultat string

ErrorTextDuplicateRelationFullHierarchy public_oe static_oe property

public static string ErrorTextDuplicateRelationFullHierarchy
Résultat string

ErrorTextDuplicateRoleName public_oe static_oe property

public static string ErrorTextDuplicateRoleName
Résultat string

ErrorTextDuplicateStaticData public_oe static_oe property

public static string ErrorTextDuplicateStaticData
Résultat string

ErrorTextEntityIndexInvalid public_oe static_oe property

public static string ErrorTextEntityIndexInvalid
Résultat string

ErrorTextEntityIndexInvalidLength public_oe static_oe property

public static string ErrorTextEntityIndexInvalidLength
Résultat string

ErrorTextEntityIndexIsDuplicate public_oe static_oe property

public static string ErrorTextEntityIndexIsDuplicate
Résultat string

ErrorTextEntityIndexIsPossibleDuplicate public_oe static_oe property

public static string ErrorTextEntityIndexIsPossibleDuplicate
Résultat string

ErrorTextEntityIndexMultipleClustered public_oe static_oe property

public static string ErrorTextEntityIndexMultipleClustered
Résultat string

ErrorTextExistingSPNeedsDBName public_oe static_oe property

public static string ErrorTextExistingSPNeedsDBName
Résultat string

ErrorTextFKNeedIndex public_oe static_oe property

public static string ErrorTextFKNeedIndex
Résultat string

ErrorTextFunctionReturnVarForTabelFunc public_oe static_oe property

public static string ErrorTextFunctionReturnVarForTabelFunc
Résultat string

ErrorTextFunctionReturnVarNotValid public_oe static_oe property

public static string ErrorTextFunctionReturnVarNotValid
Résultat string

ErrorTextFunctionScalerMultipleFields public_oe static_oe property

public static string ErrorTextFunctionScalerMultipleFields
Résultat string

ErrorTextFunctionZeroFields public_oe static_oe property

public static string ErrorTextFunctionZeroFields
Résultat string

ErrorTextGeneratedCRUD_EF4 public_oe static_oe property

public static string ErrorTextGeneratedCRUD_EF4
Résultat string

ErrorTextIdentityOnlyOnePerTable public_oe static_oe property

public static string ErrorTextIdentityOnlyOnePerTable
Résultat string

ErrorTextIdentityPKNotOnlyKey public_oe static_oe property

public static string ErrorTextIdentityPKNotOnlyKey
Résultat string

ErrorTextIndexNotInModule public_oe static_oe property

public static string ErrorTextIndexNotInModule
Résultat string

ErrorTextInheritFieldOnly1Identity public_oe static_oe property

public static string ErrorTextInheritFieldOnly1Identity
Résultat string

ErrorTextInheritTopMostMustBeIndentity public_oe static_oe property

public static string ErrorTextInheritTopMostMustBeIndentity
Résultat string

ErrorTextInvalidCodeFacade public_oe static_oe property

public static string ErrorTextInvalidCodeFacade
Résultat string

ErrorTextInvalidCompany public_oe static_oe property

public static string ErrorTextInvalidCompany
Résultat string

ErrorTextInvalidCompanyAbbreviation public_oe static_oe property

public static string ErrorTextInvalidCompanyAbbreviation
Résultat string

ErrorTextInvalidDatabase public_oe static_oe property

public static string ErrorTextInvalidDatabase
Résultat string

ErrorTextInvalidFieldIdentifierView public_oe static_oe property

public static string ErrorTextInvalidFieldIdentifierView
Résultat string

ErrorTextInvalidIdentifier public_oe static_oe property

public static string ErrorTextInvalidIdentifier
Résultat string

ErrorTextInvalidIdentifierComposite public_oe static_oe property

public static string ErrorTextInvalidIdentifierComposite
Résultat string

ErrorTextInvalidIdentifierFuncField public_oe static_oe property

public static string ErrorTextInvalidIdentifierFuncField
Résultat string

ErrorTextInvalidIdentifierFuncParam public_oe static_oe property

public static string ErrorTextInvalidIdentifierFuncParam
Résultat string

ErrorTextInvalidIdentifierModule public_oe static_oe property

public static string ErrorTextInvalidIdentifierModule
Résultat string

ErrorTextInvalidIdentifierSP public_oe static_oe property

public static string ErrorTextInvalidIdentifierSP
Résultat string

ErrorTextInvalidIdentifierSPField public_oe static_oe property

public static string ErrorTextInvalidIdentifierSPField
Résultat string

ErrorTextInvalidIdentifierSPParam public_oe static_oe property

public static string ErrorTextInvalidIdentifierSPParam
Résultat string

ErrorTextInvalidIdentifierSelectCommand public_oe static_oe property

public static string ErrorTextInvalidIdentifierSelectCommand
Résultat string

ErrorTextInvalidIdentifierView public_oe static_oe property

public static string ErrorTextInvalidIdentifierView
Résultat string

ErrorTextInvalidIdentifierViewField public_oe static_oe property

public static string ErrorTextInvalidIdentifierViewField
Résultat string

ErrorTextInvalidIdentityColumn public_oe static_oe property

public static string ErrorTextInvalidIdentityColumn
Résultat string

ErrorTextInvalidInheritance public_oe static_oe property

public static string ErrorTextInvalidInheritance
Résultat string

ErrorTextInvalidNamespace public_oe static_oe property

public static string ErrorTextInvalidNamespace
Résultat string

ErrorTextInvalidProject public_oe static_oe property

public static string ErrorTextInvalidProject
Résultat string

ErrorTextInvalidStoredProcPrefix public_oe static_oe property

public static string ErrorTextInvalidStoredProcPrefix
Résultat string

ErrorTextMetadataInvalid public_oe static_oe property

public static string ErrorTextMetadataInvalid
Résultat string

ErrorTextMinMaxValueInvalidType public_oe static_oe property

public static string ErrorTextMinMaxValueInvalidType
Résultat string

ErrorTextMinMaxValueMismatch public_oe static_oe property

public static string ErrorTextMinMaxValueMismatch
Résultat string

ErrorTextModuleContainIndexNotFields public_oe static_oe property

public static string ErrorTextModuleContainIndexNotFields
Résultat string

ErrorTextModuleEntityFieldMismatch public_oe static_oe property

public static string ErrorTextModuleEntityFieldMismatch
Résultat string

ErrorTextModuleEntityPKMismatch public_oe static_oe property

public static string ErrorTextModuleEntityPKMismatch
Résultat string

ErrorTextModuleIsEmpty public_oe static_oe property

public static string ErrorTextModuleIsEmpty
Résultat string

ErrorTextModuleItemNotInModule public_oe static_oe property

public static string ErrorTextModuleItemNotInModule
Résultat string

ErrorTextModulesNotUnique public_oe static_oe property

public static string ErrorTextModulesNotUnique
Résultat string

ErrorTextMultiFieldRelationsMapDifferentFields public_oe static_oe property

public static string ErrorTextMultiFieldRelationsMapDifferentFields
Résultat string

ErrorTextMutableInherit public_oe static_oe property

public static string ErrorTextMutableInherit
Résultat string

ErrorTextNameConfictsWithGeneratedCode public_oe static_oe property

public static string ErrorTextNameConfictsWithGeneratedCode
Résultat string

ErrorTextNoColumns public_oe static_oe property

public static string ErrorTextNoColumns
Résultat string

ErrorTextNoModules public_oe static_oe property

public static string ErrorTextNoModules
Résultat string

ErrorTextNoPrimaryKey public_oe static_oe property

public static string ErrorTextNoPrimaryKey
Résultat string

ErrorTextNoTables public_oe static_oe property

public static string ErrorTextNoTables
Résultat string

ErrorTextNullableFieldHasDefault public_oe static_oe property

public static string ErrorTextNullableFieldHasDefault
Résultat string

ErrorTextNullableFieldHasDefaultWithRelation public_oe static_oe property

public static string ErrorTextNullableFieldHasDefaultWithRelation
Résultat string

ErrorTextOnlyOneTimestamp public_oe static_oe property

public static string ErrorTextOnlyOneTimestamp
Résultat string

ErrorTextOutputTargetInvalid public_oe static_oe property

public static string ErrorTextOutputTargetInvalid
Résultat string

ErrorTextPackageRequiresDisplayName public_oe static_oe property

public static string ErrorTextPackageRequiresDisplayName
Résultat string

ErrorTextParentTableNoRelation public_oe static_oe property

public static string ErrorTextParentTableNoRelation
Résultat string

ErrorTextPreDefinedNameField public_oe static_oe property

public static string ErrorTextPreDefinedNameField
Résultat string

ErrorTextPrimaryKeyNull public_oe static_oe property

public static string ErrorTextPrimaryKeyNull
Résultat string

ErrorTextRelationCausesNameConflict public_oe static_oe property

public static string ErrorTextRelationCausesNameConflict
Résultat string

ErrorTextRelationDuplicate public_oe static_oe property

public static string ErrorTextRelationDuplicate
Résultat string

ErrorTextRelationFieldDuplicated public_oe static_oe property

public static string ErrorTextRelationFieldDuplicated
Résultat string

ErrorTextRelationFieldNotMatchAssociatedTable public_oe static_oe property

public static string ErrorTextRelationFieldNotMatchAssociatedTable
Résultat string

ErrorTextRelationM_NNameDuplication public_oe static_oe property

public static string ErrorTextRelationM_NNameDuplication
Résultat string

ErrorTextRelationM_NRoleMismatch public_oe static_oe property

public static string ErrorTextRelationM_NRoleMismatch
Résultat string

ErrorTextRelationMustHaveParentChild public_oe static_oe property

public static string ErrorTextRelationMustHaveParentChild
Résultat string

ErrorTextRelationNeedUniqueFields public_oe static_oe property

public static string ErrorTextRelationNeedUniqueFields
Résultat string

ErrorTextRelationNoFields public_oe static_oe property

public static string ErrorTextRelationNoFields
Résultat string

ErrorTextRelationshipMustBeInModule public_oe static_oe property

public static string ErrorTextRelationshipMustBeInModule
Résultat string

ErrorTextRelationshipMustHaveFields public_oe static_oe property

public static string ErrorTextRelationshipMustHaveFields
Résultat string

ErrorTextRelationshipTypeMismatch public_oe static_oe property

public static string ErrorTextRelationshipTypeMismatch
Résultat string

ErrorTextRoleNoStartNumber public_oe static_oe property

public static string ErrorTextRoleNoStartNumber
Résultat string

ErrorTextSQLRequiredFunction public_oe static_oe property

public static string ErrorTextSQLRequiredFunction
Résultat string

ErrorTextSQLRequiredSelectCommand public_oe static_oe property

public static string ErrorTextSQLRequiredSelectCommand
Résultat string

ErrorTextSQLRequiredStoredProcedure public_oe static_oe property

public static string ErrorTextSQLRequiredStoredProcedure
Résultat string

ErrorTextSQLRequiredView public_oe static_oe property

public static string ErrorTextSQLRequiredView
Résultat string

ErrorTextSecurityFunction public_oe static_oe property

public static string ErrorTextSecurityFunction
Résultat string

ErrorTextSelfRefChildColumnPK public_oe static_oe property

public static string ErrorTextSelfRefChildColumnPK
Résultat string

ErrorTextSelfRefMustHaveRole public_oe static_oe property

public static string ErrorTextSelfRefMustHaveRole
Résultat string

ErrorTextSelfRefOnlyOne public_oe static_oe property

public static string ErrorTextSelfRefOnlyOne
Résultat string

ErrorTextStoredProcNoColumns public_oe static_oe property

public static string ErrorTextStoredProcNoColumns
Résultat string

ErrorTextTableAssociativeNeedsNonOverlappingColumns public_oe static_oe property

public static string ErrorTextTableAssociativeNeedsNonOverlappingColumns
Résultat string

ErrorTextTableAssociativeNeedsOnlyPK public_oe static_oe property

public static string ErrorTextTableAssociativeNeedsOnlyPK
Résultat string

ErrorTextTableAssociativeNoAuditTracking public_oe static_oe property

public static string ErrorTextTableAssociativeNoAuditTracking
Résultat string

ErrorTextTableAssociativeNoCRUDAudit public_oe static_oe property

public static string ErrorTextTableAssociativeNoCRUDAudit
Résultat string

ErrorTextTableBadStaticData public_oe static_oe property

public static string ErrorTextTableBadStaticData
Résultat string

ErrorTextTableColumnNameMatch public_oe static_oe property

public static string ErrorTextTableColumnNameMatch
Résultat string

ErrorTextTableColumnNonPrimaryRelationNotUnique public_oe static_oe property

public static string ErrorTextTableColumnNonPrimaryRelationNotUnique
Résultat string

ErrorTextTableComponentNoColumns public_oe static_oe property

public static string ErrorTextTableComponentNoColumns
Résultat string

ErrorTextTableCompositeNoColumns public_oe static_oe property

public static string ErrorTextTableCompositeNoColumns
Résultat string

ErrorTextTableDoesNotAllowModification public_oe static_oe property

public static string ErrorTextTableDoesNotAllowModification
Résultat string

ErrorTextTableInheritMustContainParentInModule public_oe static_oe property

public static string ErrorTextTableInheritMustContainParentInModule
Résultat string

ErrorTextTableNotHave1IdentityOnly public_oe static_oe property

public static string ErrorTextTableNotHave1IdentityOnly
Résultat string

ErrorTextTableProjectSameName public_oe static_oe property

public static string ErrorTextTableProjectSameName
Résultat string

ErrorTextTenantTypeTable public_oe static_oe property

public static string ErrorTextTenantTypeTable
Résultat string

ErrorTextTenantTypeTableTenantColumnMatch public_oe static_oe property

public static string ErrorTextTenantTypeTableTenantColumnMatch
Résultat string

ErrorTextTypeTableIsMutable public_oe static_oe property

public static string ErrorTextTypeTableIsMutable
Résultat string

ErrorTextTypeTableNoData public_oe static_oe property

public static string ErrorTextTypeTableNoData
Résultat string

ErrorTextTypeTablePrimaryKey public_oe static_oe property

public static string ErrorTextTypeTablePrimaryKey
Résultat string

ErrorTextTypeTableStaticDataEmpty public_oe static_oe property

public static string ErrorTextTypeTableStaticDataEmpty
Résultat string

ErrorTextTypeTableTextField public_oe static_oe property

public static string ErrorTextTypeTableTextField
Résultat string

ErrorTextVersionNegative public_oe static_oe property

public static string ErrorTextVersionNegative
Résultat string

WarningErrorModuleRuleInvalid public_oe static_oe property

public static string WarningErrorModuleRuleInvalid
Résultat string

WarningErrorModuleRuleLogicFail public_oe static_oe property

public static string WarningErrorModuleRuleLogicFail
Résultat string

WarningErrorModuleRuleNoDependentModule public_oe static_oe property

public static string WarningErrorModuleRuleNoDependentModule
Résultat string

WarningTextModuleEntityPKMismatch public_oe static_oe property

public static string WarningTextModuleEntityPKMismatch
Résultat string

WarningTextNeedParameters public_oe static_oe property

public static string WarningTextNeedParameters
Résultat string

WarningTextRelationNotInModule public_oe static_oe property

public static string WarningTextRelationNotInModule
Résultat string

WarningTextRelationNotInModuleWithParentChildTables public_oe static_oe property

public static string WarningTextRelationNotInModuleWithParentChildTables
Résultat string

WarningTextSelectCommandNeedParameters public_oe static_oe property

public static string WarningTextSelectCommandNeedParameters
Résultat string

WarningTextTableColumnNonPrimaryRelationNotUnique public_oe static_oe property

public static string WarningTextTableColumnNonPrimaryRelationNotUnique
Résultat string