
checkboxfor in mvc 5 example | Entity framework |
Example of Checkboxfor helper with entity framework Html helper class have two methods to generate checkboxes( Checkbox() –Loosely Typed MvcHtmlString CheckBox(string name, bool isChecked, object htmlAttributes) Checkboxfor() –Strongly Typed (It...

data caching in asp.net c# example
What is Caching Ø Caching provides a way of storing frequently accessed data and reusing that data. ØImprove performance of web application using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace...

generic repository pattern c# entity framework 6 | Lecture 16 | hindi
What is Repository Pattern 1.reduces repetitive code and separates the Data Access and Business Logic Used for resuability 2.Easy for further changes. How to implement Repository Pattern 1.Create an interface.- Define all CRUD functions for 2.A class implement...

singleton design pattern asp.net C#
What is singleton pattern 1.A class Object having only one instance and able to perform all task. 2.This design pattern is considered as creational(object creation) design pattern. 3.No constructor parameters are allowed while creating an instance. How to implement...