I've already created my database.
I have two tables in my database "Categories" and "Contents".
My "Categories" table consists of: Id, CategoryName.
My "Contents" table consists of: Id, Link, Category.
I wish to display these two tables in a single view in MVC Razor.
I am to display one table at each view, however I am unable to display two table in a view. Can someone teach me step by step on how to do this?
I do not want to display hardcoded List details.