Monday, December 2, 2013

Download ASP.NET MVC 3 Real Time Arcitecture Application ( Sports Store )

This Application covers many latest features and some of as below
  1. Entity Framework
  2. Repository Pattern
  3. Dependency Injection ( Ninject )
  4. Model Binder
  5. Custom HTML Helpers
  6. Linq to Objects
  7. Child Actions
  8. Razor View
  9. Constraint Routing
  10. Data Annotations 
  11. Nuget Integration
  12. Moq Integration
  13. and more...more ... more....
  Download the complete Real Time Project  from the URL :Download

Tuesday, November 12, 2013

ASP.NET MVC Best Tutorials - Part 4


In Part 3, ASP.NET MVC Best Tutorials - Part 3 i covered
  • Action Method Parameters
  • Action Result Types
  • Passing data from controller to view
  • Filter types

I am covering below agenda as part of Asp.Net MVC Part - 4 

The Unique specialty of this session is , apart from MVC session am explaining one special Add-on that helps to every web developer.

                                


download the complete  presentation from the URL :Download

ASP.NET MVC Best Tutorials - Part 3

In Part 2, ASP.NET MVC Best Tutorials - Part 2 i covered
  • Routing - The Real magic of MVC

I am covering below agenda as part of Asp.Net MVC Part - 3 

The Unique specialty of this session is , apart from MVC session am explaining one special Add-on that helps to every web developer.

                 

download the complete  presentation from the URL :Download

Thursday, November 7, 2013

ASP.NET MVC Best Tutorials - Part 2


   In Part 1 ASP.NET MVC Best Tutorials - Part 1 i covered
  • What's wrong with Asp.net Web Forms
  • Why MVC
  •  Model-View-Controller
  • Controller Actions
  • MVC folder structure
  • MVC Conventions
 

 I'm  covering below agenda as part of Asp.Net MVC Part - 2  

The Unique specialty of this session is , apart from MVC session am explaining one special Add-on that helps to every web developer.




download the complete  presentation from the URL : Download

Tuesday, November 5, 2013

ASP.NET MVC Best Tutorials - Part 1


I am covering below agenda as part of Asp.Net MVC Part - 1 

The Unique specialty of this session is , apart from MVC session am explaining one special Add-on that helps to every web developer.



Download the complete  presentation from the URL : Download

Thursday, September 12, 2013

What is C# “Func” does?



Do you think are you really using .NET 3.5 feature?


It’s time to kill the old methodologies and writing plenty of lines of code. See the one of nice feature of 
.NET 3.5 

Take a simple function that eats input parameter as integer and returns output parameter as string

Old Methodology:


function string GetString(int intparam)
{
return “inputparameter”+ intparam;
}
String outputvalue= GetString(24);


New Methodology :


Func<int,string> GetString = i=>“inputparameter”+ i;
String outputvalue= GetString(24); 

         Here first parameter ( int ) act as input parameter type and second parameter ( string ) act as output parameter type


  1.  Func<int,bool,string> ==> here int and bool acts as input parameter type and string act as output parameter type
  2. Func<string> ==> here string acts as output parameter.There is no input parameter here.
  •      Func<int,string>=(i)=>string.Format("value{0}",i);
  •      Func<int,bool,string>=(i,b)=>string.Format("value{0}and {1}",i,b) ;
  •      Func<string>=()=>"test message"; Here there is no input parameter .It returns only string value

    Happy Coding :)