Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If there is any guidance available on how to use ADO.NET for CRUD Operations on Windows Azure Table Storage?

share|improve this question
Welcome to StackOverflow. Your question is difficult to answer because it is too vague. It would be much better to attempt an approach using code, and then ask for help if your approach is unsuccessful. See whathaveyoutried.com – hugh Sep 14 '12 at 10:14

1 Answer

up vote 1 down vote accepted

Table Storage is sometimes a confusing name as it has nothing to do with a relational tables based database like for example SQL Server.

If you want to get your hands dirty with Table Storage then follow How to Use the Table Storage Service. Another way is to make use of for example Simple.Data.Azure which you can install as a Nuget package.

However if you want to keep on making use of ADO.NET to a relational database like you're used to now then take a look at SQL Databases: How to Use SQL Database in .NET applications.

share|improve this answer
+1 for the pointer to Simple.Data.Azure. Have not tried that yet. – Dennis Burton Sep 14 '12 at 12:42
1  
I recently open sourced, Lucifure Stash, (lucifurestash.codeplex.com)) an alternate azure table storage client which has many more features. Available from NuGet too. – Lucifure Sep 14 '12 at 15:28
@Lucifure Cool, will have to take a look at that in the future. – XIII Sep 14 '12 at 15:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.