I am a novice programmer and need some help with class design for my application.

We are working on the design of a media manager desktop application (using .NET Framework 4.0) . The application manages media store on a local HDD (similar to XBMC http://xbmc.org/) .

The user can get meta-data (information about a particular movie, the cast, etc.) from our own server who in turn shall acquire the meta-data from one or more sources. The Users can then associate local media files to these conceptual entities (a bigbuckbunny.avi file can be associated with the movie Big Bucks Bunny.)

The server and client would communicate using WCF (this detail probably is not very relevant)

We wish to provide a strong user side querying support. The user should be able to search for titles matching specific criteria.

For example, she could search for [ a movie which has [ genres Action AND Comedy ] AND [ stars Tom Cruise ] ].

The idea is to have all querying performed at the server, which then will return a result set to the client.

We wish to use db4o (or possibly some other OODBMS for data storage on both the server and the client) We hope to be able to execute all queries only through LINQ (no QBE or SODA)

Now, the real question. How do we design the classes so that they can be efficiently queried.

The design we initially thought of was like this :

class Artist
{
    String Name;
    .
    .
    .
}

class CrewMemberRole
{
    Artist a;
    String roleType;
    String characterName;
}

class Movie
{
    String title;
    List<CrewMemberRole> Crew;
}

However the problem with this sort of design is that any query that does not specify a particular movie, will have to iterate through the entire collection of Movie objects and go through each member of the list and find if the particular artist is present in that list. Is this acceptable? I doubt it.

There are two potential solutions that we could come up with:

  1. Use ids (possibly defy the purpose of using a OODBMS) and link each artist with all the movies in which he has worked in.

  2. Same as above, but use object references instead of ids.

Neither seems to be a great solution.

What should we do? Even partial solutions or references to relevant external resources would be appreciated.

link|improve this question

33% accept rate
I don't think you want to "design classes so they can be efficiently queried." I think you want to design your classes so that they represent the proper domain model. And as far as iterating through an entire collection of Movie objects... why would you have to do that? If you're using a linq query, then you're not getting all objects and iterating through each one. At least you shouldn't be. – Bob Horn Dec 26 '11 at 2:44
Thank you for your response. Given the classes skeletons that I included, could you please write a sample LINQ query where all movies from a specific artist can be obtained from a objects db container object. – Jinal Kothari Dec 26 '11 at 7:07
Go with your option 2 using object references,db4o will handle that gracefully on its queries quickly using the object references. – German Dec 26 '11 at 15:03
@Jinal Does my answer below work for you? If so, could you accept it as the answer? – Bob Horn Dec 27 '11 at 4:59
feedback

1 Answer

In response to this comment: "Thank you for your response. Given the classes skeletons that I included, could you please write a sample LINQ query where all movies from a specific artist can be obtained from a objects db container object."

First, save some movies to db4o, so we have something with which to work:

    private static void SaveMovies()
    {
        Artist chevyChase = new Artist() { Name = "Chevy Chase" };
        Artist kevinBacon = new Artist() { Name = "Kevin Bacon" };

        CrewMemberRole roleFletch   = new CrewMemberRole() { Artist = chevyChase, CharacterName = "Fletch", RoleType = "Main" };
        CrewMemberRole roleVacation = new CrewMemberRole() { Artist = chevyChase, CharacterName = "Clark", RoleType = "Main" };
        CrewMemberRole roleFootloose = new CrewMemberRole() { Artist = kevinBacon, CharacterName = "Ren", RoleType = "Main" };

        Movie fletchMovie    = new Movie() { Title = "Fletch" };
        fletchMovie.CrewMemberRoles.Add(roleFletch);

        Movie vacationMovie  = new Movie() { Title = "National Lampoons Vacation" };
        vacationMovie.CrewMemberRoles.Add(roleVacation);

        Movie footlooseMovie = new Movie() { Title = "Footloose" };
        footlooseMovie.CrewMemberRoles.Add(roleFootloose);

        IObjectContainer db = GetDatabase();

        db.Store(fletchMovie);
        db.Store(vacationMovie);
        db.Store(footlooseMovie);

        db.Close();
    }

Then, display them by artist:

    private static void DisplayMoviesByArtist()
    {
        IObjectContainer db = GetDatabase();

        IEnumerable<Movie> movies = from Movie movie in db
                                    where movie.CrewMemberRoles.Exists(role => role.Artist.Name == "Chevy Chase")
                                    select movie;

        foreach (Movie movie in movies)
        {
            Console.WriteLine(movie.Title);
        }

        db.Close();
    }

Here's the GetDatabase() method:

private static IObjectContainer GetDatabase()
{
    return Db4oClientServer.OpenClient("DellXps", 8484, "user", "password");
} 

enter image description here

link|improve this answer
thank you for sparing time to write a response. I must appreciate the fact that you wrote a complete code with output. I have a question though. Doesn't this implementation still require to iterate(not manually, but internally when LINQ query is executed) through ALL the movies and all artists in each crew per movie? I did +1 you answer, but I am still hoping to find a fresh perspective on the class design. Thank you, once again – Jinal Kothari Dec 27 '11 at 11:57
feedback

Your Answer

 
or
required, but never shown

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