WCF Data Service with SQL Azure


In this article we will expose a cloud or SQL Azure database as a WCF Data Service. 

The two steps mainly involved in this

  1. Creating local Database and migrating to SQL Azure
  2. Exposing SQL Azure Database as WCF DATA Service
Step 1:  Creating local Database and migrating to SQL Azure

Creating Database

The first step is to create a database. We are going to use a School database.  The script for a sample School Database can be copied from here.

Generate Database Script for SQL Azure

Right click on School Database and select Tasks. From Tasks select Generate Script.

WCFDataserviceSQlAzure1.gif 

From Pop up select Set Scripting option.

WCFDataserviceSQlAzure2.gif 

Give the file name by selecting Save to file option.

Now the main thing to be noticed here is we need to change an advanced setting. For that click on Advanced options.

WCFDataserviceSQlAzure3.gif
 
And in types of data to script select Script and Data both option.

WCFDataserviceSQlAzure4.gif
 
After that click Next and Finish. You will see that a SQL file is created and we will be using this script to migrate our in-house school database to SQL Azure.

Create School Database in SQL Azure

Login to SQL Azure portal with your live credential.

https://sql.azure.com/

Click on SQL Azure tab. You will get the project that you created for yourself.

WCFDataserviceSQlAzure5.gif
 
Click on the project. In my case the project name is debugmode.  After clicking on project, you will get listed the entire database created in your SQL Azure account.

WCFDataserviceSQlAzure6.gif
 
Here in my account there are two databases already created.  They are master and student database.  Master database is default database created by SQL Azure for you.

Click on Create Database 

WCFDataserviceSQlAzure7.gif

Give the name of your database.  Select the edition as Web and specify the max size of database. 

WCFDataserviceSQlAzure8.gif

You can select other option also for the edition as business

After that click on Create you can see on Databases tab that Demo1 database has been created.
 
WCFDataserviceSQlAzure9.gif

Run the Script in SQL Azure

Open SQL Server management studio

WCFDataserviceSQlAzure10.gif 
 
You will get Connected to server dialog box. Click cancel on that.

WCFDataserviceSQlAzure11.gif
 
After canceling the dialog box click on New Query from left top

WCFDataserviceSQlAzure12.gif
 
On clicking New Query, you will get the connect to server dialog box again.

WCFDataserviceSQlAzure13.gif 

Now here you need to provide, Server name of SQL Azure and Login credential of SQL Azure. 

To know what is database server name of SQL Azure portal, login to Windows Azure portal with your live credential and then click on SQL Azure tab
 
WCFDataserviceSQlAzure14.gif

You will get the server name in the form of

abc.database.windows.net

Where abc is name of your SQL Azure server.  We need to provide this server name at local sql server management studio. 

WCFDataserviceSQlAzure15.gif

Make sure to select SQL Server Authentication and provide login user name and password of your SQL Azure database portal.

After that before clicking Connect click on Option

WCFDataserviceSQlAzure16.gif
 
From Option select School database. 

WCFDataserviceSQlAzure17.gif
 
Run the Script

Now once you successfully got connected to School Database in SQL Azure.  Copy the script and Run like below. 

WCFDataserviceSQlAzure18.gif

After successfully running of script, run the below command and all the tables name will get listed.

WCFDataserviceSQlAzure19.gif
 
In this way you successfully migrated database to SQL AZURE.

Step 2: Exposing SQL Azure Database as WCF DATA Service

Create a Web Application

Create a new project and select ASP.Net Web Application project template from Web tab.  Give a meaning full name to the web application.

WCFDataserviceSQlAzure20.gif
 
Create a Data Model

We can create a Data Model, which can be exposed as WCF Data Service in three ways
  1. Using ADO.Net Entity model.
  2. Using LINQ to SQL class.
  3. Custom Data Model.
For our purpose, I am going to use ADO.Net Entity model to create the data model.  So to create an entity model
  1. Right click on web application and add a new item
  2. Select ADO.Net Entity model from Data tab.

    WCFDataserviceSQlAzure21.gif

  3. Since we have table in SQL Azure Dat aBase. So we are going to choose option, select from database.

    WCFDataserviceSQlAzure22.gif

  4. Choose a new connection.

    WCFDataserviceSQlAzure23.gif

    After clicking on New Connection, this is the more important step. We need to give extra care here.

    So provide the information as below,

    WCFDataserviceSQlAzure24.gif

    Click on Test Connection to test connection established successfully or not?  After that you will get prompted as Connection string contains sensitive data, do you want to keep that in configuration file or mange through program. Which to use is your choice.

    WCFDataserviceSQlAzure25.gif

    After selecting your option, click on the Next button; you will then see all the Tables, Views and Stored Procedures available as part of a data model for WCF Data Service.

    WCFDataserviceSQlAzure26.gif

  5. Select the tables, views and stored procedure from the data base that you want to make as the part of your data model.
Creating WCF Data Service
  1. Right click on Web Application project and add a new item.
  2. Select WCF Data Service from Web tab. Give any meaningful name. I am leaving the default name here.

    WCFDataserviceSQlAzure27.gif

  3. After adding the WCF Data Service, we can see a service file with extension .svc has been added to the solution explorer.
The first thing to do is to provide a data source name. To do that, uncomment the first commented line and give the data source name. In our case we are using the name of the model, which we created in the second step; the data source. Our data model name is SchoolEntities.
 
WCFDataserviceSQlAzure28.gif

Now we need to set access rules for entity or entity set.  Since we have only one table, either we can use the name of the table explicitly or if we want to set the same access rule for all the tables in the data model or data source we can use  *.

WCFDataserviceSQlAzure29.gif 

So we are setting the access rule that, on the entity in the data source performs all the operations.

So finally the svc file looks like:

WCFDataserviceSQlAzure30.gif
 
Run the WCF Data Service

Just press F5 to run the WCF Data Service. Data Service will be hosted in the default ASP.Net server.

When running you will see all the tables listed there.

WCFDataserviceSQlAzure31.gif
 
Append the URL with People and you will get all the records from People table

WCFDataserviceSQlAzure32.gif
 
Note: If your browser is not showing the expected result, make sure Feed reading of browser is off.  Do that from the menu of IE and select tool and then Internet Option then Content.
 
WCFDataserviceSQlAzure33.gif

WCFDataserviceSQlAzure34.gif

So we have exposed data from cloud using WCF Data service. Now any OADTA client can consume the data from cloud by consuming WCF Data Service.

Thanks for reading; I hope this article was useful.

Up Next
    Ebook Download
    View all
    Learn
    View all