I have Many to Many Relationships for:
Company -----> CompanyVenue <------ Venue
I can currently add a Venues to a Companies and Companies to Venues.
The Add Venue link takes the user to this view: (using this controller logic):
var venue = context.Companies.Select(x => x.Venues.Where(xy => xy.VenueId == id));
var company = venue.Select(x => x.);
ViewData["CompanyFor"] = company;
ViewData["VenueFor"] = venue;
Once the User Selects the Venue and Clicks the ADD VENUE Button, it passes the ViewModel back to Controller:
Company c = context.Companies.Single(x => x.CompanyId == model.CompanyId);
Venue v = context.Venues.Single(x => x.VenueId == model.VenueId);
c.Venues.Add(v);
context.SaveChanges();
So That is how I implimented the Many-Many Add. But, I Am looking for some help with Removal Controller Code / View (If Needed) / Possibly A View Model (but don't really see the need for what is essential a simple action)
In the Company Details View I am trying to get REMOVE Link underneath each Venue Item to Remove the [CompanyVenue] (many2many) Relationship.
If it is possible to pass 2 Values instead of one using this type of ActionLink():
@Html.ActionLink("Remove", "VenueRemove", new { Id = venue.VenueId }, new { Cid = model.CompanyId } )
it would be easy, but I have not figured out a way (load method) to pass both Values ( Id & Cid ) back to a VenueRemove() Controller Action, that would then return a RedirectToAction() back to the Company Details view.
If someone knows how to do that Please let me know. (Thank You Darin for the awnser to that)
I went ahead and got the Remove Working Using a View.
But is there anyway to get the Remove to work by just clicking the REMOVE Link/button and have it remove the venue with out going to the view?
Maybe an AJAX request or something.... ???