Contents tagged with ASP.NET MVC
-
New Features of Visual Studio 2013
I have categorized the new features into four general sections:
-
Testing JavaScript with QUnit
In this session, we will take a look at how to use QUnit to write unit tests for your JavaScript code.
-
Using Autofac DynamicProxy2 Interceptors with MVC3–Part 2
Continuing from the previous post, the interceptor is now ready to be registered and consumed.
-
Using Autofac DynamicProxy2 Interceptors with MVC3–Part 1
Autofac is an IoC container and using DynamicProxy we can intercept method calls to perform custom logic. What this means is that, you can actually add ‘hooks’ to methods in your code so that when these methods are called, you automatically invoke an ‘interceptor’ method that wraps the call to your method.
-
Some cool features introduced in ReSharper 6
I recently upgraded to ReSharper 6 and the experience so far has only been positive. Here are the top things for which I said ‘Good job Jetbrains’.
-
WCF Data Services Toolkit to talk to any database using GetAll, GetOne, Save, Remove methods
I did a primer on using WCF Data Services in my last post. One of the things I’m seeing about the posts regarding WCF Data Services using OData is that they used Entity Framework to do the DAL work. So a lot of underlying work gets hidden by using EF. Here is a post that allows you to connect to any database using the traditional ADO.NET way.
-
Attach to IISExpress process from Visual Studio
With VS2010 SP1, you can attach an application process to IISExpress to enable debugging of an application. Here’s how:
-
Executing SQL queries on SQL CE 4 through Entity Framework
In my previous blog, I wrote about how to use inheritance through entity framework on SQL CE database. In this blog however, I’ll explore how you can run a typical SQL query statement on the database table and read/write the values. I will build on the application that I used in the last article.
-
Entity Framework Model Inheritance with SQL CE 4
For some (unknown) reason, I’ve been curious to work with SQL CE, just hadn’t gotten a chance to work with it. If you’re not familiar with what SQL CE is all about, go through this article from Scott Gu.
-
HTML5-MVC application using VS2010 SP1
This is my first attempt at creating HTML5 pages. VS 2010 allows working with HTML5 now (you just need to make a small change after installing SP1). So my Razor view is now a HTML5 page.