Posts

Showing posts from June, 2018

Identify ASP.NET MVC Assembly Version

Introduction: The MVC  pattern separates of an application into three main parts. The Model − Collection of classes are working with the business logic. The View  − It is responsible for User Interfaace. It is a  HTML format whose extension is cshtml. The Controller  − Collection of classes are working data logic and business logic. Description: Every MVC application contains 3 folders that is controller, View and Model. Every controller contains controller action method which is responsible for create view to transfer data from controller to view through viewdata and viewbag, Tempdata. Everey model contains some properties and using this model class name reference using namespace inside controller we can access related properties of class for business logic implementation. In case of entity data model creation that is edmx file automatically creates model class based on table name or reated data base object name and with related properties as same as column name