I have two Tables: Products(ProductID, ProductName)
and Categories(CategoryID, CategoryName)
with a many-to-many relationship between Products
and Categories
ProductsCategories(ProductID, CategoryID)
How Can I Implement a view that enables a user to Add and Edit one product with many categories using Asp.Net Mvc and LINQ to SQL?