May 2011 - Posts

13
Comments

WCF Data Services Toolkit to talk to any database using GetAll, GetOne, Save, Remove methods by nmarun

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...
2
Comments

Accessing data as resource through URI - WCF Data Services by nmarun

Open Data Protocol (OData for short) allows CRUD operations on your data by exposing it as a resource accessible through a URI. So you can try something like below directly on the browser to get a collection of all employees less than 26 years of age...
0
Comments

Attach to IISExpress process from Visual Studio by nmarun

With VS2010 SP1, you can attach an application process to IISExpress to enable debugging of an application. Here’s how: I have an MVC application with the following setup. 1: public class HomeController : Controller 2: { 3: public ActionResult Index(...
More Posts