(K. Scott Allen) Jon Galloway has an overview of the new membership features in ASP.NET MVC 4. The Internet project template moves away from the core membership providers of ASP.NET and into the world of SimpleMembershipProvider and OAuth.
Tag: Development
Working With Entity Framework Code First And JSON In ASP.NET Web Pages
(Mike Brind) If you want to build AJAX powered rich client interfaces with ASP.NET Web Pages, you will work with JSON – a lot. You might also be attracted to the Entity Framework for your data access technology. There are some special considerations to take account of when serialising Entity Framewo
ASP.NET MVC DisplayTemplate and EditorTemplates for Entity Framework DbGeography Spatial Types
(Scott Hanselman) I was trying to write a blog post about something totally different and was using this small EntityFramework 5 Code First model:
A .NET 4.5 Parallel Dataflow Primer
(Eric Vogel) The Task Parallel Dataflow (TDF) library is built upon the existing Task Parallel Library (TPL) included in the .NET 4.0 Framework. Although the TPL provides a lot of functionality to help parallelize an application, it doesn’t make it overly easy to tackle complex parallel use cases su
Working with Enums and Templates In ASP.NET MVC
(K. Scott Allen) Imagine you have the following types defined.
A LINQ Operator to Select Multiple Values from Sequences
(Richard Carr) Language-Integrated Query (LINQ) includes several projection operators but none that allow multiple items to be created from each item in a sequence. This article describes a custom operator that allows several selections to be made per item.
GridView Custom Paging with LINQ
(Vincent Maverick Durano) In this post we will take a look at how to do pagination in GridView control. Paging is very helpful in presenting huge amount of data in the page because this helps speeding up the loading performance of the page and provides more friendly to end users in terms of data pr
Namespaces are obsolete
(Bertrand Le Roy) To those of us who have been around for a while, namespaces have been part of the landscape. One could even say that they have been defining the large-scale features of the landscape in question.
ASP.NET MVC 4, Browser-Specific Views
In this post I am going to write about an interesting and powerful feature in ASP.NET MVC 4 , View Overriding or Browser- Specific Views. But, what does it mean?! It’s a lovely new feature that lets you to override views , layouts and partial views globally or individually for mobile devices or
Auto Wire-Up Your Model Binders ASP.NET MVC
(Mira Javora) Model binding in MVC attempts to map values from IValueProviders to your specified model. The value providers (FormValueProvider, QueryStringValueProvider, HttpFileCollectionValueProvider, RouteDataValueProvider, JsonValueProviderFactory … ) abstract the actual value retrieval and bin
