1

Are there any heavy drawbacks of creating databases with entityframework using the code first approach regarding the fact that the goal is Azure? I know little about Azure (yet :)) but I know I will pay per transaction.

So now I am a bit worried, if I do not have to bother writing SQL statements by hand, will entity framework code first still generate "cost-friendly" SQL mappings for me? Or is code first a bad practice when it comes to Azure database?

2
  • 1
    Azure SQL Database's cost doesn't operate based on transactions unlike Azure Storage Table. ( Azure Storage Table : Data Size + Transaction Count + Out BandWidth, Azure SQL Databases : Data Size + Out BandWidth ) Commented Dec 24, 2012 at 9:44
  • Ah that's a good point. I just checked the online calculator and you're right (not that I doubted you :)). Commented Dec 24, 2012 at 10:57

1 Answer 1

3

Azure SQL Database's cost doesn't operate based on transactions unlike Azure Storage Table.

Azure Storage Table : Data Size + Transaction Count + Out BandWidth

Azure SQL Databases : Data Size + Out BandWidth

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.