Friday, June 27, 2014

UML Class Diagram in 10 Steps Using Microsoft Visio 2010 This article describes how to create a UML Class Diagram in 10 steps. In this article I have created a sample class diagram using Microsoft Visio 2010. So there might be a need of Visio to create it at your end. Though I'll share screen shots that might be helpful to understand UML class diagrams.You...

Tuesday, June 24, 2014

Exception Handling at Filter Level Using IExceptionFilter in MVC4     This article describes how to return a desired view from an IExceptionFilter in MVC with practices. It is a part of exception handling at the filter level. Custom filters and attributes are an excellent way of injecting extra processing logic into the MVC request response...

Wednesday, June 18, 2014

Expanding the Results View Will Enumerate the IEnumerable Using DB Context This article describes the most frequent terms confronted by software geeks during LINQ execution. Let's understand the term “results view will enumerate the ienumerable”. Initially it may be slightly confusing for those who are new to LINQ and DB Context terminology but...

Monday, June 16, 2014

Call Controller Action Method From JQuery Using Ajax

Call Controller Action Method From JQuery Using Ajax     Today I just came across an issue and implemented code that I thought to share with my techie friends who may also face such an issue, which is to call a Controller's action method from jQuery using Ajax.Calling from the Client Side.   The following is a sample of calling an...

Friday, June 13, 2014

Execution Order of Filters in MVC 4 With Practices: Important FAQ This article describes the execution order of filters in MVC with practices. Custom filters and attributes are an excellent way to inject extra processing logic into the MVC request response pipeline.   This is another most frequently asked question in an interview. In a MVC...

Wednesday, June 4, 2014

Smart Working with ASP.NET MVC Value Providers: Custom Value Providers     In this article I am going to describe Custom Value Providers in MVC and its uses. If I say about value providers, Value Providers are the components that feed data to model binders. Feeding the data means instills the data to Model binder for further use at action...