Tag: table
-
Inserting Null Value for Integer columns in Windows Azure Table
I recommend to read below post before you start reading this post Creating Azure Table using CloudTableClient.CreateTableIfNotExist There may be requirement when you need to insert null values for values type columns in Azure table. In our recent project, we had a requirement to insert null values for integer columns. Usually if you don’t provide…
-
Three simple steps to create Azure table
Please read post at below link for recommended way to create table, https://debugmode.net/2011/10/12/creating-azure-table-using-cloudtableclient-createtableifnotexist/ In this post I will show you three simple steps to create Azure Table. Let us say you want to create Azure table called Employee with following columns EmployeeID EmployeeName EmployeeSalary Step 1: Create Entity class First step is to create entity…