RelationalDataProviderParseStructureName Method |
Parses the structure name.
Namespace: Dundas.BI.Data.DataProviders.RelationalAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic virtual IList<string?> ParseStructureName(
IProviderConnector dataConnector,
string structureName
)
Public Overridable Function ParseStructureName (
dataConnector As IProviderConnector,
structureName As String
) As IList(Of String)
public:
virtual IList<String^>^ ParseStructureName(
IProviderConnector^ dataConnector,
String^ structureName
)
abstract ParseStructureName :
dataConnector : IProviderConnector *
structureName : string -> IList<string>
override ParseStructureName :
dataConnector : IProviderConnector *
structureName : string -> IList<string> Parameters
- dataConnector IProviderConnector
- The data connector.
- structureName String
- The structure name.
Return Value
IListStringThe collection of different parts identifying the structure (typically, schema and table name).
Remarks
This is used to generate friendly names for captions.
See Also