Tag: CRUD Operation
-
MongoDB with CSharp
Before you start working with MongoDB using C Sharp, I recommend you to read MongoDB on Windows quick start in 5 minute and download MongoDB for CSharp from here Start MongoDB server If you would have gone through MongoDB on Windows quick start in 5 minute then you know how to start MongoDB server. However…
-
Learn ADO.Net Entity Framework: Performing basic CRUD Operation
In this post I will walkthrough you on performing basic CRUD operation using ADO.Net Entity framework. Database design I am going to use School Database. You can find School database script here . To be precise, I am going perform CRUD operation on only one table Person. Schema of Person table is as below. I…
-
CRUD Operations on Windows Azure table and Azure Storage
Objective This article will give a walkthrough on how to perform a CRUD operation on Azure table. Step 1 Creating the Create a new Cloud Service Application. To create, File -> New -> Projects -> Cloud Services. Select ASP.Net Web Role. I am giving CRUDSample to the name of the project and CRUDWebRole to the…
-
CRUD operation on a REST WCF service
This article will explain step by step, how to perform CRUD operation on a database using ADO.Net Data Service and then how to expose CRUD operations as REST enabled WCF service to the client. This will also give explanation, how to consume REST service at client side. This article will perform the entire HTTP verb…