Método ModelStore.CreateIdentifier (IList<String>, Boolean, ICollection<String>)
Cria um identificador exclusivo do modelo usando a lista fornecida de partes externas, a indicação de diferenciação e coleção de nomes de parte.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (em Microsoft.Data.Schema.dll)
Sintaxe
'Declaração
Public Function CreateIdentifier ( _
externalParts As IList(Of String), _
overrideCase As Boolean, _
parts As ICollection(Of String) _
) As ModelIdentifier
public ModelIdentifier CreateIdentifier(
IList<string> externalParts,
bool overrideCase,
ICollection<string> parts
)
public:
ModelIdentifier^ CreateIdentifier(
IList<String^>^ externalParts,
bool overrideCase,
ICollection<String^>^ parts
)
member CreateIdentifier :
externalParts:IList<string> *
overrideCase:bool *
parts:ICollection<string> -> ModelIdentifier
public function CreateIdentifier(
externalParts : IList<String>,
overrideCase : boolean,
parts : ICollection<String>
) : ModelIdentifier
Parâmetros
- externalParts
Tipo: System.Collections.Generic.IList<String>
Um IList<T> de partes do nome de referência externa.
- overrideCase
Tipo: System.Boolean
true para maiúsculas de minúsculas; falsepara diferenciar maiúsculas de minúsculas.
- parts
Tipo: System.Collections.Generic.ICollection<String>
Um ICollection<T> de nomes de parte.
Valor de retorno
Tipo: Microsoft.Data.Schema.SchemaModel.ModelIdentifier
Um identificador exclusivo.Se um identificador que tem as mesmas partes já existir, esse identificador é retornado.
Comentários
Um elemento chamado "dbo.MinhaTabela" seria representada por uma matriz de partes de nome contém "dbo" e "MinhaTabela".
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.