Gets a list of table names with the specificed attribute with specified value.

Namespace: Caisis.BOL
Assembly: Caisis.BOL (in Caisis.BOL.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static IEnumerable<string> GetTableNamesWithMetadataAttributeValue(
	string attributeName,
	string attributeValue,
	string disease
)
Visual Basic
Public Shared Function GetTableNamesWithMetadataAttributeValue ( 
	attributeName As String,
	attributeValue As String,
	disease As String
) As IEnumerable(Of String)
Visual C++
public:
static IEnumerable<String^>^ GetTableNamesWithMetadataAttributeValue(
	String^ attributeName, 
	String^ attributeValue, 
	String^ disease
)

Parameters

attributeName
Type: System..::..String
The name of the attribute
attributeValue
Type: System..::..String
The attribute value to search for (NULL or empty string == check attribute name only)
disease
Type: System..::..String
The disease in which to search for attribute, NULL or empty string == DEFAULT

Return Value

Type: IEnumerable<(Of <(<'String>)>)>

[Missing <returns> documentation for "M:Caisis.BOL.BusinessObject.GetTableNamesWithMetadataAttributeValue(System.String,System.String,System.String)"]

See Also