In this article, I am going to show you how we can perform various operations using LINQ to SQL. Database description Let us say, I have created a database called ILPTrainee. This table got only one table with below structure EmpId is primary key here. For our explanation, I have put few records in theContinueContinue reading “7 queries on LINQ to SQL class”
Author Archives: Dhananjay Kumar
Theoretical introduction of Custom Binding in WCF
What is Custom Binding? Custom Binding provides the full control over the messaging stack for the user. We use Custom Binding, when none of the system provided binding is matching our requirement. For example let us say, your requirement is to use Http protocol to send SOAP12 message version. Each Binding is made of differentContinueContinue reading “Theoretical introduction of Custom Binding in WCF”
Extension Method
Extension method is a feature in c# 3.0, which allows developer to add functionality in existing class without modifying the existing class or recompiling the existing class or extending the existing class. It is a new feature of c#3.0 Extension method enables to add new methods to existing type. It does not need creation ofContinueContinue reading “Extension Method”
Picture Gallery for Windows 7 Phone using WCF REST Service
Objective In this article I will give you walkthrough of creating a Picture Gallery for Windows 7 phone. I will show how to fetch images from server using WCF REST service. The final output would be like below Please read this article before going through this article. In this article, majorly I am going toContinueContinue reading “Picture Gallery for Windows 7 Phone using WCF REST Service”
Consuming basic REST service in Windows 7 mobile application
Objective In this article I am going to explain how to consume a REST service in windows 7 phone app. We will achieve this is two steps Create and Host REST based WCF service Consume service in W7 phone application. Create and host REST service There are many article, I have written discussing REST service.ContinueContinue reading “Consuming basic REST service in Windows 7 mobile application”
Country Application for Window 7 mobile
Objective In this article, I am going to show you a Country Application. User will select country from drop down and details of selected country will be displayed. Expected Output We will achieve this in three steps Create XML file for country and corresponding details. And create entity class. Design phone page Write codeContinueContinue reading “Country Application for Window 7 mobile”
Image Viewer for Windows 7 Mobile
Objective This article will give step to step illustration of creating a simple Image Viewer for Windows 7 mobile. Step 1 Create a new Windows Phone Application. From Silverlight for Windows Phone tab select Windows Phone Application project type. Step 2 In this step I will create an entity class for images to beContinueContinue reading “Image Viewer for Windows 7 Mobile”
Media player for Windows 7 Mobile
Objective This article will give step to step illustration of creating a simple media application for Windows 7 mobile. Step 1 Create a new Windows Phone Application. From Silverlight for Windows Phone tab select Windows Phone Application project type. Step 2 Design page. Divide content grid in two rows In first row put aContinueContinue reading “Media player for Windows 7 Mobile”
Mini Browser for Windows 7 Mobile
Objective This article will give step to step illustration of creating a simple browser for Windows 7 mobile. Step 1Create a new Windows Phone Application. From Silverlight for Windows Phone tab select Windows Phone Application project type. Step 2 Right click on project and add reference of Microsoft.Phone.Controls.WebBrowser Step 3 On the XAML page addContinueContinue reading “Mini Browser for Windows 7 Mobile”
A Silverlight Twitter Client for Windows 7 Mobile Part #1
Objective In this article I will show how to make a basic twitter client for Windows 7 mobile. This is part 1 of the series. In this part, I will show only how to read statues of given user. In further parts, I will show Tweet, Re tweet and Direct Message functionalities. Follow the belowContinueContinue reading “A Silverlight Twitter Client for Windows 7 Mobile Part #1”