SqlDatabaseResource.GetDatabaseColumns Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
List database columns
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/columns
- Operation Id: DatabaseColumns_ListByDatabase
- Default Api Version: 2020-11-01-preview
- Resource: SqlDatabaseColumnResource
public virtual Azure.Pageable<Azure.ResourceManager.Sql.SqlDatabaseColumnResource> GetDatabaseColumns (System.Collections.Generic.IEnumerable<string> schema = default, System.Collections.Generic.IEnumerable<string> table = default, System.Collections.Generic.IEnumerable<string> column = default, System.Collections.Generic.IEnumerable<string> orderBy = default, string skiptoken = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetDatabaseColumns : seq<string> * seq<string> * seq<string> * seq<string> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Sql.SqlDatabaseColumnResource>
override this.GetDatabaseColumns : seq<string> * seq<string> * seq<string> * seq<string> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Sql.SqlDatabaseColumnResource>
Public Overridable Function GetDatabaseColumns (Optional schema As IEnumerable(Of String) = Nothing, Optional table As IEnumerable(Of String) = Nothing, Optional column As IEnumerable(Of String) = Nothing, Optional orderBy As IEnumerable(Of String) = Nothing, Optional skiptoken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of SqlDatabaseColumnResource)
Parameters
- schema
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- table
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- column
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- orderBy
- IEnumerable<String>
The IEnumerable<T> where T
is of type String to use.
- skiptoken
- String
An opaque token that identifies a starting point in the collection.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
A collection of SqlDatabaseColumnResource that may take multiple service requests to iterate over.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET