Aracılığıyla paylaş


StoredProcedure class

Kimliğe göre belirli bir saklı yordamı okuma, değiştirme, silme veya yürütme işlemleri.

Saklı Yordam oluşturma, tümünü okuma veya sorgulama işlemleri için,

Özellikler

container
id
url

Kaynağın başvuru URL'sini döndürür. İzinler'de bağlantı için kullanılır.

Yöntemler

delete(RequestOptions)

Verilen StoredProcedure değerini silin.

execute<T>(PartitionKey, any[], RequestOptions)

Verilen StoredProcedure dosyasını yürütür.

Belirtilen T türü istemci tarafından zorlanmaz. Saklı yordamdan gelen yanıtın sağladığınız T türüyle eşleştiğinden emin olun.

read(RequestOptions)

Verilen StoredProcedure için StoredProcedureDefinition değerini okuyun.

replace(StoredProcedureDefinition, RequestOptions)

Verilen StoredProcedure değerini belirtilen StoredProcedureDefinition ile değiştirin.

Özellik Ayrıntıları

container

container: Container

Özellik Değeri

id

id: string

Özellik Değeri

string

url

Kaynağın başvuru URL'sini döndürür. İzinler'de bağlantı için kullanılır.

string url

Özellik Değeri

string

Yöntem Ayrıntıları

delete(RequestOptions)

Verilen StoredProcedure değerini silin.

function delete(options?: RequestOptions): Promise<StoredProcedureResponse>

Parametreler

options
RequestOptions

Döndürülenler

execute<T>(PartitionKey, any[], RequestOptions)

Verilen StoredProcedure dosyasını yürütür.

Belirtilen T türü istemci tarafından zorlanmaz. Saklı yordamdan gelen yanıtın sağladığınız T türüyle eşleştiğinden emin olun.

function execute<T>(partitionKey: PartitionKey, params?: any[], options?: RequestOptions): Promise<ResourceResponse<T>>

Parametreler

partitionKey
PartitionKey

Saklı yordamı yürütürken kullanılacak bölüm anahtarı

params

any[]

Verilen StoredProcedure'a bağımsız değişken olarak geçirecek parametre dizisi.

options
RequestOptions

StoredProcedure'un çağrılması için bölüm anahtarı gibi ek seçenekler.

Döndürülenler

Promise<ResourceResponse<T>>

read(RequestOptions)

Verilen StoredProcedure için StoredProcedureDefinition değerini okuyun.

function read(options?: RequestOptions): Promise<StoredProcedureResponse>

Parametreler

options
RequestOptions

Döndürülenler

replace(StoredProcedureDefinition, RequestOptions)

Verilen StoredProcedure değerini belirtilen StoredProcedureDefinition ile değiştirin.

function replace(body: StoredProcedureDefinition, options?: RequestOptions): Promise<StoredProcedureResponse>

Parametreler

body
StoredProcedureDefinition

Mevcut tanımı değiştirmek için belirtilen StoredProcedureDefinition .

options
RequestOptions

Döndürülenler