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:
Use ids (possibly defy the purpose of using a OODBMS) and link each artist with all the movies in which he has worked in.
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.
