Gets a list of fields names with the specificed attribute in the specified diseaes view.

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> GetFieldNamesWithMetadataAttribute(
	string table,
	string attributeName,
	string disease
)
Visual Basic
Public Shared Function GetFieldNamesWithMetadataAttribute ( 
	table As String,
	attributeName As String,
	disease As String
) As IEnumerable(Of String)
Visual C++
public:
static IEnumerable<String^>^ GetFieldNamesWithMetadataAttribute(
	String^ table, 
	String^ attributeName, 
	String^ disease
)

Parameters

table
Type: System..::..String
The name of the table to search
attributeName
Type: System..::..String
The name of the attribute
disease
Type: System..::..String
The disease in which to search for attribute, NULL or empty string == DEFAULT

Return Value

Type: IEnumerable<(Of <(<'String>)>)>
A list of fields with attribute

See Also