简体   繁体   中英

Inserting data into azure table storage?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM