C# 클래스 Microsoft.WindowsAzure.MobileServices.MobileServiceTable

Provides operations on tables for a Mobile Service.
파일 보기 프로젝트 열기: xamarin/azure-mobile-services 1 사용 예제들

공개 메소드들

메소드 설명
MobileServiceTable ( string tableName, MobileServiceClient client ) : System

Initializes a new instance of the MobileServiceTables class.

비공개 메소드들

메소드 설명
Patch ( IJsonValue original, IJsonValue updated ) : IJsonValue

Patch an object with the values returned by from the server. Given that it's possible for the server to change values on an insert or update, we want to make sure the client object reflects those changes.

SendDeleteAsync ( JsonObject instance, string>.IDictionary parameters ) : System.Threading.Tasks.Task

Delete an object from a given table.

SendInsertAsync ( JsonObject instance, string>.IDictionary parameters ) : Task

Insert a new object into a table.

SendLookupAsync ( object id, string>.IDictionary parameters ) : Task
SendReadAsync ( string queryString, string>.IDictionary parameters ) : Task

Execute a query against a table.

SendUpdateAsync ( JsonObject instance, string>.IDictionary parameters ) : Task

Update an object in a given table.

메소드 상세

MobileServiceTable() 공개 메소드

Initializes a new instance of the MobileServiceTables class.
public MobileServiceTable ( string tableName, MobileServiceClient client ) : System
tableName string The name of the table.
client MobileServiceClient /// Reference to the MobileServiceClient associated with this table. ///
리턴 System