DBSchemaObtainAndInsertUniqueConstraintObjectsFromMetaData Method  | 
 
            Obtains the unique constraint objects from meta data and adds them to the tables in this schema.
            
 
    Namespace: 
   SD.LLBLGen.Pro.DBDriverCore
    Assembly:
   SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.7.0.0 (5.7.0)
Syntaxpublic void ObtainAndInsertUniqueConstraintObjectsFromMetaData(
	IEnumerable<IGrouping<string, DataRow>> ucFieldsPerUc,
	string columnNameTable,
	string columnNameField
)
Public Sub ObtainAndInsertUniqueConstraintObjectsFromMetaData ( 
	ucFieldsPerUc As IEnumerable(Of IGrouping(Of String, DataRow)),
	columnNameTable As String,
	columnNameField As String
)
Parameters
- ucFieldsPerUc
 - Type: System.Collections.GenericIEnumerableIGroupingString, DataRow
The uc fields per uc grouping enumerable, grouped per UC name. - columnNameTable
 - Type: SystemString
The column name of the column with the table names. - columnNameField
 - Type: SystemString
The column name of the column with the field names. 
See Also