Inserting data into azure table storage?

861 Views Asked by At

I have a enity say

 class NewEntity : TableEntity 
 {
         Set partition key and Row key in constructor.

          public NewEnum a { get; set; }
  }   

     enum NewEnum
   {
       Sat,
       Sun        
   }

Now when i insert this enity into table storage using TableOperation.Insert((ITableEntity) entity) it doesnt insert NewEnum into the table, please help me here.

1

There are 1 best solutions below

0
On