I'm starting to learn ASP.NET and I followed this tutorial. So, I got a simple app which uses the ASP.NET Identity membership system and has an additional database containing products and cart items.
Is there a way for creating a many-to-many relationship between the users and the products data, considering they belong to (I guess) two different databases? I also want to save the user who adds a new item, so I would need a many-to-one relationship or a foreign key. I found a bunch of tutorials specified for MVC, but none for Web Forms and since I'm a beginner I didn't manage to figure out how to implement that for my needs.