Tag: ODATA
-
Netflix Movie Explorer a Metro Application: Creating Step by Step
Download source code of this article from here In this article we will follow step by step approach to create Netflix Movie Explorer Metro Application. We will use HTML and WinJS to create this application. See the video to understand expected behavior of the application. Some of the features of application are as following Browse […]
-
How to work with Custom Method in WCF Data Service?
In this post we will see how could we expose a custom method in WCF Data Service? There are three steps involved in doing that Create a partial class of Entity class and add desired custom method in that. Add a method with WebGet attribute in service class. This method will make a call to […]
-
Consuming ODATA in Silverlight 4.0
ODATA is everywhere and so is Silverlight. In this post, I will show, How ODATA can be consumed in Silverlight? “ OData URL I will be using NorthWind OData URL. You can access that URL from below link. http://services.odata.org/Northwind/Northwind.svc/ We are going to fetch Customers table from NorthWind DataBase. Create Project and Add Service Reference […]
-
Consuming OData in Windows Phone 7.1 or Mango Phone
Background If you would have read my posts discussing WCF Data Service and Windows Phone 7, there were many steps involved in consuming WCF Data Service in Windows Phone 7 Download OData client for Windows Phone 7 and add as reference in Windows Phone 7 project Create Proxy of WCF Data Service using svcutil.exe Add […]
-
Fetching Data from SQL Azure table in Windows 7.1 [Mango] Phone using WCF Data Service
In this article, we will discuss about how to consume data from cloud [SQL Azure] in a Windows 7.1 [Mango] phone. SQL Azure and Windows 7.1 [Mango] phones are two common terms that you can hear about from many tech-savvy people. So I thought it is the right time to integrate these technologies. In this […]
-
WCF Data Service with SQL Azure
In this article we will expose database from cloud or SQL Azure as WCF Data Service. There two steps mainly involved in this 1. Creating local Database and migrating to SQL Azure 2. Exposing SQL Azure Database as WCF DATA Service Step1: Creating local Database and migrating to SQL Azure Creating Database The first step […]