I have been trying to get a good grasp of Azure Table storage for a little while now, and while I understand generally how it works I am really struggling to shake my relational database thinking. I usually learn best by example, so I'm wondering if someone can help me out. I'm going to outline a simple setup for how I would solve a problem using a relational database, can someone help guide me to converting it to use Azure Table storage?
Lets say that I have simple note taking app, it has users and each user can have as many notes as they want, and each note can have as many users (owners or viewers) as it needs. If I were going to deploy this using a relational database I would likely deploy it as follows:
For the database, I'd start with something like this:
CREATE TABLE [dbo].[Users](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Username] [nvarchar](20) NOT NULL)
CREATE TABLE [dbo].[UsersNotes](
[ID] [int] IDENTITY(1,1) NOT NULL,
[UserID] [int] NOT NULL,
[NoteID] [int] NOT NULL)
CREATE TABLE [dbo].[Notes](
[ID] [int] IDENTITY(1,1) NOT NULL,
[NoteData] [nvarchar](max) NULL)
I would then setup a relationship between Users.ID and UsersNotes.UserID as well as Notes.ID and UsersNotes.NoteID with constraints to enforce referential integrity.
For the application, I would have an ORM generate some entities with matching name properties for each of these, and I'd probably call it a day:
public class Users
{
public int ID { get; set; }
public String Username { get; set; }
}
// and so on and so forth
I realize that this design is fully dependent on the relational database, and what I'm looking for is some advise on how to shake this train of thought to use Azure Table storage, or any other non-relational data storage techniques.
Lets also assume for the sake of argument that I've installed the Azure SDK, and have played around with it, but my working knowledge of using the SDK is limited, I'd rather not focus on that, but rather what a good solution to the above would look like. A good starting point will help make the SDK make sense to me, since I'll have a point of reference.
For the sake of completeness, lets say that
- Note data will change frequently when first created, and taper off over time
- Users will have many notes, and notes may have multiple users (not concurrent, just viewers)
- I expect fairly few users (low hundreds), but I expect a fair number of notes (low hundreds, per user)
- I expect to query against
Usernamethe most, and then show the notes the user has access to - I also expect when viewing a Note, to show the other users with access to that note, a reverse lookup