I essentially need to add relationships from jobs to users in my database.
So, if I create a new job, "MyNewJob", I want to associate it with UserId 33 in my User Table.
Right now, I can put #USER_33# in the description, and then write a LINQ statement that brings back all jobs where the description field Contains "User33" and then I have a list of jobs that are associated with User 33.
My question is: is there any way to add key/value collections to jobs? I find it hard to believe I'm the only person who has ever wanted to to do this.