ModelStore.CreateIdentifier Method (Boolean, array<String )
Creates a unique model identifier by using the provided case-sensitive indication and array of part names.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Function CreateIdentifier ( _
overrideCase As Boolean, _
ParamArray parts As String() _
) As ModelIdentifier
public ModelIdentifier CreateIdentifier(
bool overrideCase,
params string[] parts
)
public:
ModelIdentifier^ CreateIdentifier(
bool overrideCase,
... array<String^>^ parts
)
member CreateIdentifier :
overrideCase:bool *
parts:string[] -> ModelIdentifier
public function CreateIdentifier(
overrideCase : boolean,
... parts : String[]
) : ModelIdentifier
Parameters
- overrideCase
Type: System.Boolean
true for case-insensitive; false for case-sensitive.
- parts
Type: array<System.String[]
A param array of part names.
Return Value
Type: Microsoft.Data.Schema.SchemaModel.ModelIdentifier
A unique identifier. If an identifier with the same parts already exists, that identifier is returned.
Remarks
An element named "dbo.MyTable" would be represented by a name parts array with "dbo" and "MyTable".
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.