当前位置: 首页>>代码示例>>C#>>正文


C# CloudTable.Exists方法代码示例

本文整理汇总了C#中Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists方法的典型用法代码示例。如果您正苦于以下问题:C# CloudTable.Exists方法的具体用法?C# CloudTable.Exists怎么用?C# CloudTable.Exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.WindowsAzure.Storage.Table.CloudTable的用法示例。


在下文中一共展示了CloudTable.Exists方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: PopulateTableData

        private static void PopulateTableData(CloudTable cloudTable)
        {
            // if the table does not exist then create it and populate it wih some data
            if (!cloudTable.Exists())
            {
                cloudTable.CreateIfNotExists();

                var tableBatchOperation = new TableBatchOperation();
                for (int i = 0; i < 100; i++)
                {
                    tableBatchOperation.Add(
                        TableOperation.Insert(new Person(i.ToString(), string.Format("Person {0}", i))));
                }

                cloudTable.ExecuteBatch(tableBatchOperation);
            }
        }
开发者ID:linal,项目名称:AzureStorageTableDemo,代码行数:17,代码来源:Program.cs

示例2: CloudDal

        public CloudDal()
        {
            // Retrieve the storage account from the connection string.
            CloudStorageAccount storageAccount = CloudStorageAccount.DevelopmentStorageAccount;

            // Create the table client.
            CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

            // Create the table if it doesn't exist.
            table = tableClient.GetTableReference("people");
            if (table.Exists()==false)
            {
                table.Create();
            }
        }
开发者ID:learncity,项目名称:ayklam,代码行数:15,代码来源:CloudDal.cs

示例3: DoesTableExist

 /// <summary>
 /// Checks whether the table exists.
 /// </summary>
 /// <param name="table">Cloud table object</param>
 /// <param name="requestOptions">Table request options</param>
 /// <param name="operationContext">Operation context</param>
 /// <returns>True if table exists; otherwise, false.</returns>
 public bool DoesTableExist(CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext)
 {
     return table.Exists(requestOptions, operationContext);
 }
开发者ID:docschmidt,项目名称:azure-powershell,代码行数:11,代码来源:StorageTableManagement.cs

示例4: DeleteEntities

        public void DeleteEntities(CloudTable table, string partition = null)
        {
            if (!table.Exists())
            {
                return;
            }

            TableQuery query = new TableQuery();
            if (partition != null)
            {
                query.FilterString = string.Format("PartitionKey eq '{0}'", partition);
            }

            var entities = table.ExecuteQuery(query);

            if (entities.Any())
            {
                var batch = new TableBatchOperation();
                foreach (var entity in entities)
                {
                    batch.Delete(entity);
                }
                table.ExecuteBatch(batch);
            }
        }
开发者ID:Azure,项目名称:azure-webjobs-sdk-script,代码行数:25,代码来源:EndToEndTestFixture.cs


注:本文中的Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。