I have already posted about Deferred Execution here In this post we will see how internally Deferred or lazy execution is implemented. Deferred Execution executes the query only when Loop starts. What I mean here is that, we iterate through…
I have already posted about Deferred Execution here In this post we will see how internally Deferred or lazy execution is implemented. Deferred Execution executes the query only when Loop starts. What I mean here is that, we iterate through…
Creating the UI 1. Add a label 2. Add a textbox. Give any meaningful name I am leaving default name here. 3. A button. On click event of the button list names will be fetched. 4. A listbox control to…
Target Audience : Begineers This articles is targeted to beginners of SharePoint 2010. In this article we will walkthrough 1. Adding a Web part Page 2. Content Editor Web Part on the page. Follow the steps as below, Step1 Open…
Learning WCF RIA Service Part#1 can be read here This is the second article of learning WCF RIA series. In this article we will see 1. How to pass parameter in query 2. How to return single object 3. How…
In this walkthrough we will migrate an existing Database from SQL Server 2008 R2 to SQL Azure. Creating Database The first step is to create database. We are going to use School database. Script of sample School Database copy from…
A very important feature of SQL Server 2008 is that we can enable CDC [Change Data capture] on database or table. We can track the database had CDC enabled by querying IS_CDC_ENABLED column In above query School is name of…
It may be bit late but let us learn WCF RIA together. I will be writing many parts on Learning WCF RIA Services. Part1 In this part just to get a feeling of WCF RIA and see our one application…
SQL Server 2008 automatically compress data stored in database. SQL server does Lossless data compression. SQL server uses Dictionary based compression algorithm. Row Level Data Compression For Row level Data Compression SQL Server does not use explicitly any standard compression…
Variable and functions both defined with let construct in F#. Defining a integer variable let a = 2 in a*a ; printfn "%d"a;; System.Console.ReadKey(true); In above snippet we defined a integer variable in F# with let constructs. In F# teypes…