Download presentation from here Read articles on Demonstrations of this presentation I must say “Pune user group delivered an effective Azure Boot Camp “. On a Saturday, it was nice to see more than 50 participants. Somehow I was disappointed because I had information that more than 220 people registered for the event. However, onContinueContinue reading “Presented at Azure Boot camp: Pune 9th April 2011”
Monthly Archives: April 2011
Download PPT on SQL Azure to .NET Developers from Pune Azure Boot Camp
SQLAzuretodotnetdevelopers Note : For source code of this presentation leave your MAIL ID in the COMMENT and I will happy to mail you.
SQL Azure with LINQ
LINQ could be used with SQL Azure in the same way it is used with SQL Server. We are going to use School database again. So to see how we can use SQL Azure with LINQ 1. Create a console Appli8cation. For purpose of this walkthrough , I am creating Console app. You can useContinueContinue reading “SQL Azure with LINQ”
SQL Azure with ADO.Net
A common question comes in our mind that, how to work with ADO.Net and SQL Azure? In this post, I am trying to simplify this. Assume we do have a database called School at local SQL Server and as well as at SQL Azure. Essentially we need to change only connection string in config fileContinueContinue reading “SQL Azure with ADO.Net”
Getting Started with Azure AppFabric Service Bus: Creating Namespace
Before we can begin working with AppFabric Service Bus, we need 1. Service Bus Account 2. Namespace in Service Bus Project In this post, we will walkthrough on creating a new Namespace in Service Bus project. 1. Very first we need to login to Azure portal. 2. After successful login from left tab selcet ServiceContinueContinue reading “Getting Started with Azure AppFabric Service Bus: Creating Namespace”
Adding and Deleting SQL Azure firewall rules programmatically
In this post we will add and delete firewall rules associated with Database server in SQL Azure programmatically. Read part 1 of this post here. In part 1, we fetched SQL Azure firewall rules programmatically. In this post I am going to add two functions in existing Firewall class. 1. Adding function to add firewallContinueContinue reading “Adding and Deleting SQL Azure firewall rules programmatically”
MVP 2nd time in Row: A Thanks Note and statistics
Second time in row Microsoft says, I am their “MOST VALUABLE PROFESSIONAL”. All credit goes to community and readers of my blog and articles. Now I am MVP on Connected System Development since 1st April 2010. A Thanks note … There are many people who have helped me in this way or other. I thankContinueContinue reading “MVP 2nd time in Row: A Thanks Note and statistics”
Fetching SQL Azure firewall rules programmatically
In this post we will fetch firewall rules associated with Database server in SQL Azure programmatically. First step is to create a FireWallRule class. This class contains three properties corresponds to three basic ingredient of firewall rules in SQL Azure. 1. Name of the firewall 2. Start IP address 3. End IP address FirewallRule.cs OnceContinueContinue reading “Fetching SQL Azure firewall rules programmatically”
Listing Firewall rules in SQL Azure
In this post, we will fetch firewall rules from SQL Azure. Each Database server in SQL Azure is associated with one or more firewall rules. Each firewall rules have, 1. Name 2. Start IP Address 3. End IP Address Firewall rules can be fetched by querying against Master Database. To retrieve firewall rules login toContinueContinue reading “Listing Firewall rules in SQL Azure”