Im, new in ASP MVC and I don\'t know how to create Models which base on stored procedures from my db. I have already database which works with another application, and my web pa
Okay, lets say that you have a SP called Customers which is selecting some columns like:
ID
Name
Address
Now you will create a Model class inside your Model folder called "Customer.cs" and define the properties like:
public int ID { get; set; }
public string Name { get; set; }
public string Address { get; set; }
This is your MODEL class.