I'm very new to ASP.NET MVC (and .NET in general). I'm trying to throw together a basic website with some CRUD functionality, but I'm getting a little tripped up by EF and SimpleMembership. I've spent hours looking for good starter information, but it seems that MVC 4 is too new to have mature content (that I can understand).
Now for questions!
If I want to add a few models, like Jobs and Applications, should I lump them all together in a single, monolithic file or break each model into its own file?
How many DB contexts should I have? Would it look like this?
public class MyContext : DbContext
{
public DbSet<Job> Jobs { get; set; }
public DbSet<Application> Applications { get; set; }
}
Should the UsersContext (from SimpleMembership) remain separate from the context(s) I create for my models?
If I want to have multiple "navigation properties" (correct use?) from a Job to a User (e.g. a Poster and a Taker), do I do that like this?
public class Job
{
public int JobId { get; set; }
public virtual User Poster { get; set; }
public virtual User Taker { get; set; }
}
Related to the previous question, if I'm using SimpleMembership and separate the context(s) for my models and the UsersContext (as I presume I should, correct me if I'm wrong), how do I make references across context boundaries?
Answering these questions would really help me get off the ground! Thanks!