stuck with asp.net mvc 3.0 Scaffolding in case of many to many relationship
I am working on a mvc3.0 app using EF code first and mvc scaffolding. I am currently stuck with many to many relation between entities. I have following model. namespace BigApp.Models { #region POCO Objects public class Group { public int Id { get; set; } public string Name { get; set; } public DateTime CreatedOn { get; set; } public DateTime UpdatedOn { get; set; } public virtual ICollection<Project> Projects { get; set; } } public class Project { public int Id { get; set; } public string Name { get; set; } public string Url { get; set; } public DateTime CreatedOn { get; set; } public