Click or drag to resize

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
Syntax
public static TableMetadata GetTableMetadata(
	this IMetadataProvider provider,
	string tableName
)

Parameters

provider
Type: Aloe.SystemFrameworks.Domain.DataAccessIMetadataProvider
The provider.
tableName
Type: SystemString
Name of the table.

Return Value

Type: TableMetadata
The 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
ExceptionCondition
KeyNotFoundExceptionWhen the table is not found
See Also