Posts

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

Difference Between Sql Operations Studio and Sql Server Management Studio

Image
Primary Goal : The primary IDE which developers and DBAs use to connect to their database instance. SQL Server Management Studio It is the client tool that can be used to write and execute the SQL queries. The tool includes both, script editors and graphical tools which work with objects and features of the server.  Microsoft also incorporated backward compatibility for older versions of SQL Server, thus allowing a newer version of SSMS to connect to the older versions of SQL Server instances.  SQL Server Management Studio (SSMS) works with Windows only. Released Date: Its initial release is 2005. SQL Operations Studio It is a free, light-weight tool that runs on Windows, macOS, and Linux for managing SQL Server, Azure SQL Database, and Azure SQL Data Warehouse.  It’s easy to connect to Microsoft SQL Server with SQL Operations Studio and perform the routine database operations. It is a quick learning tool with multiplatform support. No