1

I have a DataTable with about 500 rows in C# which I want to upload to Azure Blob. How can I achieve this?

3
  • Is there a reason you do not want to store this in a db table ? Commented Sep 14, 2016 at 12:09
  • Yes, it's a client requirement. Commented Sep 14, 2016 at 12:20
  • Not sure what the exact question is, but as written, this is fairly broad. Are you asking for specifics on writing content to blobs? Commented Sep 14, 2016 at 12:55

1 Answer 1

3

Perhaps you could consider serializing the DataTable first and then uploading the serialized data to blob storage?

How to serialize a DataTable to a string?

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.