In code first, you can have multiple DBContext and just one database. You just have to specify the connection string in the constructor.
public class MovieDBContext : DbContext
{
public MovieDBContext()
: base("DefaultConnection")
{
}
public DbSet<Movie> Movies { get; set; }
}