Click or drag to resize
DbFunctionCallSchemaName Property
Gets or sets the name of the schema the function is located in. Can be ignored on databases which don't support schemas.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public string SchemaName { get; set; }

Property Value

Type: String
The name of the schema.

Implements

IDbFunctionCallSchemaName
Remarks
If schema name isn't supplied, the function has to be present in the default schema the user has access to in the current catalog. If you've specified a catalog, always specify the schema. If the function to call is a system function, don't specify schema nor catalog name. If the function name is preformatted, schemaname and catalogname are ignored.
See Also