MetadataProviderExtensionsGetTableMetadata Method |
Returns the meta-data about the specified table. Throws exception if the table is not found.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic static TableMetadata GetTableMetadata(
this IMetadataProvider provider,
string tableName
)
<ExtensionAttribute>
Public Shared Function GetTableMetadata (
provider As IMetadataProvider,
tableName As String
) As TableMetadata
public:
[ExtensionAttribute]
static TableMetadata^ GetTableMetadata(
IMetadataProvider^ provider,
String^ tableName
)
[<ExtensionAttribute>]
static member GetTableMetadata :
provider : IMetadataProvider *
tableName : string -> TableMetadata
Parameters
- provider
- Type: Aloe.SystemFrameworks.Domain.DataAccessIMetadataProvider
The provider. - tableName
- Type: SystemString
Name of the table.
Return Value
Type:
TableMetadataThe table meta-data.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IMetadataProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions
See Also