Update: Silverlight FAQs - Part 3 link and video added to this article.
7 Simple Steps to Connect SQL Server using WCF from SilverLight
| Video demonstration One Way, Two Way and One Time Bindings using Silver light
|
In this article, we will look at how we can do database operations using Silverlight. We will first try to understand why we cannot call ADO.NET directly from a Silverlight application and then we will browse through 7 steps which we need to follow to do database operation from Silverlight.
I have collected around 400 FAQ questions and answers in WCF, WPF, WWF, SharePoint, design patterns, UML, etc. Feel free to download these FAQ PDFs from my site.
Below are the different ingredients which constitute Silverlight plugin. One of the important points to be noted is that it does not consist of ADO.NET. In other words, you cannot directly call ADO.NET code from a Silverlight application. Now the other point to be noted is that it has the WCF component. In other words, you can call a WCF service.
In other words, you can create a WCF service which does database operations and Silverlight application will make calls to the same. One more important point to be noted is to not return ADO.NET objects like dataset, etc. because Silverlight will not be able to understand the same.
Below are 7 important steps which we need to follow to consume a database WCF service in Silverlight.
Below is a simple customer table which has 3 fields ‘CustomerId
’ which is an identity column, ‘CustomerCode
’ which holds the customer code and ‘CustomerName
’ which has the name of the customer. We will fire a simple select query using WCF and then display the data on the Silverlight grid.
Field | Datatype |
CustomerId | int |
CustomerCode | nvarchar(50) |
CustomerName | nvarchar(50) |
As per the customer table specified above, we need to first define the WCF data contract. Below is the customer WCF data contract.
[DataContract]
public class clsCustomer
{
private string _strCustomer;
private string _strCustomerCode;
[DataMember]
public string Customer
{
get { return _strCustomer; }
set { _strCustomer = value; }
}
[DataMember]
public string CustomerCode
{
get { return _strCustomerCode; }
set { _strCustomerCode = value; }
}
}
We also need to define a WCF service contract which will be implemented by WCF concrete classes.
[ServiceContract]
public interface IServiceCustomer
{
[OperationContract]
clsCustomer getCustomer(int intCustomer);
}
Now that we have defined the data contract and service contract, it’s time to implement the service contract. We have implemented the ‘getCustomer
’ function which will return the ‘clsCustomer
’ datacontract. ‘getCustomer
’ function makes a simple ADO.NET connection and retrieves the customer information using the ‘Select
’ SQL query.
public class ServiceCustomer : IServiceCustomer
{
public clsCustomer getCustomer(int intCustomer)
{
SqlConnection objConnection = new SqlConnection();
DataSet ObjDataset = new DataSet();
SqlDataAdapter objAdapater = new SqlDataAdapter();
SqlCommand objCommand = new SqlCommand
("Select * from Customer where CustomerId=" + intCustomer.ToString());
objConnection.ConnectionString =
System.Configuration.ConfigurationManager.ConnectionStrings
["ConnStr"].ToString();
objConnection.Open();
objCommand.Connection = objConnection;
objAdapater.SelectCommand = objCommand;
objAdapater.Fill(ObjDataset);
clsCustomer objCustomer = new clsCustomer();
objCustomer.CustomerCode = ObjDataset.Tables[0].Rows[0][0].ToString();
objCustomer.Customer = ObjDataset.Tables[0].Rows[0][1].ToString();
objConnection.Close();
return objCustomer;
}
}
This WCF service is going to be called from an outside domain, so we need to enable the cross domain policy in the WCF service by creating ‘CrossDomain.xml’ and ‘ClientAccessPolicy.xml’. Below are both the code snippets. The first code snippet is for cross domain and the second for client access policy.
="1.0"
<!DOCTYPE cross-domain-policy SYSTEM
"http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
="1.0"="utf-8"
<access-policy>
<cross-domain-access>
<policy>
<allow-from http-request-headers="*">
<domain uri="*"/>
</allow-from>
<grant-to>
<resource include-subpaths="true" path="/"/>
</grant-to>
</policy>
</cross-domain-access>
</access-policy>
Silverlight consumes and generates proxy for only basicHttpBinding
, so we need to change the endpoint bindings accordingly.
<endpoint address="" binding="basicHttpBinding"
contract="WCFDatabaseService.IServiceCustomer">
We need to consume the service reference in Silverlight application using ‘Add service reference’ menu. So right click the Silverlight project and select add service reference.
Now on the Silverlight side, we will create a ‘Grid
’ which has two columns, one for ‘CustomerCode
’ and the other for ‘CustomerName
’. We have also specified the bindings using ‘Binding path’ in the text block.
<Grid x:Name="LayoutRoot" Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="20"></RowDefinition>
<RowDefinition Height="20"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock x:Name="LblCustomerCode" Grid.Column="0"
Grid.Row="0" Text="Customer Code"></TextBlock>
<TextBlock x:Name="TxtCustomerCode" Grid.Column="1"
Grid.Row="0" Text="{Binding Path=CustomerCode}"></TextBlock>
<TextBlock x:Name="LblCustomerName" Grid.Column="0"
Grid.Row="1" Text="Customer Name"></TextBlock>
<TextBlock x:Name="TxtCustomerName" Grid.Column="1"
Grid.Row="1" Text="{Binding Path=Customer}"></TextBlock>
</Grid>
Now that our grid is created, it's time to bind the WCF service with the grid. So go to the code behind of the XAML file and create the WCF service object. There are two important points to be noted when we call WCF service using from Silverlight:
- We need to call the WCF asynchronously, so we have called
getCustomerAsynch
. Please note this function is created by WCF service to make asynchronous calls to the method / function. - Once the function completes its work on the WCF service, it sends back the message to the Silverlight client. So we need to have some kind of delegate method which can facilitate this communication. You can see that we have created a
getCustomerCompleted
method which captures the arguments and ties the results with the grid datacontext
.
public partial class Page : UserControl
{
public Page()
{
InitializeComponent();
ServiceCustomerClient obj = new ServiceCustomerClient();
obj.getCustomerCompleted += new EventHandler<getCustomerCompletedEventArgs>
(DisplayResults);
obj.getCustomerAsync(1);
}
void DisplayResults(object sender, getCustomerCompletedEventArgs e)
{
LayoutRoot.DataContext = e.Result;
}
}
You can now run the project and see how the Silverlight client consumes and displays the data.
- Silverlight FAQ Part 1: This tutorial has 21 basic FAQs which will help you understand WPF, XAML, help you build your first Silverlight application and also explains the overall Silverlight architecture.
- Silverlight FAQ Part 2 (Animations and Transformations): This tutorial has 10 FAQ questions which starts with Silverlight animation fundamentals and then shows a simple animated rectangle. The article then moves ahead and talks about 4 different ways of transforming the objects.
- Silverlight FAQ Part 3: This article discusses 12 FAQs which revolve around bindings, layouts, consuming WCF services and how to connect to database through Silverlight.
For further reading do watch the below interview preparation videos and step by step video series.