Blogs blogs = new Blogs(); //data access by convention Comments comments = new Comments(); //data access by convention dynamic blog = new Blog(); blog.Name = "Blog Name"; blog.Id = blogs.Insert(blog); //inserts into the database returns an Id var comment = blog.Comments().New(new { Bo...