SlideShare a Scribd company logo
1 of 25
LINQ TO SQL
http://www.nichetechsolutions.com/
http://www.mcaprojecttraining.com/
LINQ TO SQL
Prepared By:
Nilesh R. Parmar
 Introduction
 How LINQ works?
 Architecture
 Underline Execution
 Execution Mode
 Why LINQ?
 LINQ to Objects
 LINQ to SQL
 Select in LINQ
 Insert in LINQ
 Update in LINQ
 Delete in LINQ
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
 Language Integrated Query
 A set of language extensions that allows you to
perform queries without leaving the comfort of the
programming language (C# or VB)
 Defines keywords that you use to build query
expressions like select, from and where
 Select, filter, sort, group or transforms the data
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
var contacts =
from c in customers
where c.State == "WA"
select new { c.Name, c.Phone };
var contacts =
customers
.Where(c => c.State == "WA")
.Select(c => new { c.Name, c.Phone });
ExtensionExtension
methodsmethods
LambdaLambda
expressionsexpressions
QueryQuery
expressionsexpressions
ObjectObject
initializersinitializers
AnonymousAnonymous
typestypes
Local variableLocal variable
typetype
inferenceinference
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
 Deferred Execution
var data =
from d in ibEntity.Tourists
where d.IsIBMember == true
select d;
inMemoryData = data.ToList();
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
 Immediate Execution
var city =
(
from c in inMemoryData
select (c.City.ToUpper())
).Distinct();
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
 Unifies the way of accessing data from different data
sources.
 Compile-time checking of all queries, reduces run
time errors.
 Strongly typed.
 Can be applied in any project layer
(UI/Business/Data)
 Extensive Intellisence/Debugging support.
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
 Query can be executed on collections & objects that
implements IEnumerable interface.
 LINQ queries Vs. foreach loops:
 Concise and readable, especially when filtering
multiple conditions.
 Provides powerful filtering, ordering, and
grouping capabilities with a minimum of
application code.
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
 Query data in the SQL Server Database
 Implicitly transforms LINQ expression into a
set of SQL queries
 Advantages:
 Flexibility
 Change Tracking & Batch Updates
 Less code
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC
C
Introduction Of Linq , ASP.NET Training Ahmedabad, ASP.NET Course Ahmedabad

More Related Content

What's hot

NHibernate for .NET
NHibernate for .NETNHibernate for .NET
NHibernate for .NET
Guo Albert
 
Introducing Arc: A Common Intermediate Language for Unified Batch and Stream...
Introducing Arc:  A Common Intermediate Language for Unified Batch and Stream...Introducing Arc:  A Common Intermediate Language for Unified Batch and Stream...
Introducing Arc: A Common Intermediate Language for Unified Batch and Stream...
Flink Forward
 
Introduction to NHibernate
Introduction to NHibernateIntroduction to NHibernate
Introduction to NHibernate
Dublin Alt,Net
 

What's hot (20)

Linq to sql
Linq to sqlLinq to sql
Linq to sql
 
Linq in asp.net
Linq in asp.netLinq in asp.net
Linq in asp.net
 
Linq in C# 3.0: An Overview
Linq in C# 3.0: An OverviewLinq in C# 3.0: An Overview
Linq in C# 3.0: An Overview
 
Understanding LINQ in C#
Understanding LINQ in C# Understanding LINQ in C#
Understanding LINQ in C#
 
Linq to sql
Linq to sqlLinq to sql
Linq to sql
 
Linq in C#
Linq in C#Linq in C#
Linq in C#
 
Apollo Server
Apollo ServerApollo Server
Apollo Server
 
Apollo Server III
Apollo Server IIIApollo Server III
Apollo Server III
 
Easy Dataweave transformations - Ashutosh
Easy Dataweave transformations - AshutoshEasy Dataweave transformations - Ashutosh
Easy Dataweave transformations - Ashutosh
 
Apollo Server IV
Apollo Server IVApollo Server IV
Apollo Server IV
 
Intake 37 linq2
Intake 37 linq2Intake 37 linq2
Intake 37 linq2
 
Intake 37 linq3
Intake 37 linq3Intake 37 linq3
Intake 37 linq3
 
NHibernate for .NET
NHibernate for .NETNHibernate for .NET
NHibernate for .NET
 
Introducing Arc: A Common Intermediate Language for Unified Batch and Stream...
Introducing Arc:  A Common Intermediate Language for Unified Batch and Stream...Introducing Arc:  A Common Intermediate Language for Unified Batch and Stream...
Introducing Arc: A Common Intermediate Language for Unified Batch and Stream...
 
Learn Entity Framework in a day with Code First, Model First and Database First
Learn Entity Framework in a day with Code First, Model First and Database FirstLearn Entity Framework in a day with Code First, Model First and Database First
Learn Entity Framework in a day with Code First, Model First and Database First
 
Ef code first
Ef code firstEf code first
Ef code first
 
NHibernate
NHibernateNHibernate
NHibernate
 
Grokking Techtalk #38: Escape Analysis in Go compiler
 Grokking Techtalk #38: Escape Analysis in Go compiler Grokking Techtalk #38: Escape Analysis in Go compiler
Grokking Techtalk #38: Escape Analysis in Go compiler
 
Introduction to NHibernate
Introduction to NHibernateIntroduction to NHibernate
Introduction to NHibernate
 
Entity Framework
Entity FrameworkEntity Framework
Entity Framework
 

Similar to Introduction Of Linq , ASP.NET Training Ahmedabad, ASP.NET Course Ahmedabad

Linqtosql 090629035715 Phpapp01
Linqtosql 090629035715 Phpapp01Linqtosql 090629035715 Phpapp01
Linqtosql 090629035715 Phpapp01
google
 
Dev-In-Town:Linq To Sql by Chan Ming Man
Dev-In-Town:Linq To Sql by Chan Ming ManDev-In-Town:Linq To Sql by Chan Ming Man
Dev-In-Town:Linq To Sql by Chan Ming Man
Quek Lilian
 
VISWAPAVAN _2015_v1
VISWAPAVAN _2015_v1VISWAPAVAN _2015_v1
VISWAPAVAN _2015_v1
viswa pavan
 
Ajaya_resume
Ajaya_resumeAjaya_resume
Ajaya_resume
Ajay K
 
Achieve Sub-Second Analytics on Apache Kafka with Confluent and Imply
Achieve Sub-Second Analytics on Apache Kafka with Confluent and ImplyAchieve Sub-Second Analytics on Apache Kafka with Confluent and Imply
Achieve Sub-Second Analytics on Apache Kafka with Confluent and Imply
confluent
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan
 
Perfsystems- Consulting Services
Perfsystems- Consulting ServicesPerfsystems- Consulting Services
Perfsystems- Consulting Services
Perfsys Tems
 

Similar to Introduction Of Linq , ASP.NET Training Ahmedabad, ASP.NET Course Ahmedabad (20)

Linqtosql 090629035715 Phpapp01
Linqtosql 090629035715 Phpapp01Linqtosql 090629035715 Phpapp01
Linqtosql 090629035715 Phpapp01
 
Dev-In-Town:Linq To Sql by Chan Ming Man
Dev-In-Town:Linq To Sql by Chan Ming ManDev-In-Town:Linq To Sql by Chan Ming Man
Dev-In-Town:Linq To Sql by Chan Ming Man
 
SQL Anywhere and the Internet of Things
SQL Anywhere and the Internet of ThingsSQL Anywhere and the Internet of Things
SQL Anywhere and the Internet of Things
 
Sharique Khan Resume
Sharique Khan ResumeSharique Khan Resume
Sharique Khan Resume
 
B_110500002
B_110500002B_110500002
B_110500002
 
VISWAPAVAN _2015_v1
VISWAPAVAN _2015_v1VISWAPAVAN _2015_v1
VISWAPAVAN _2015_v1
 
Development tools for .Net
Development tools for .NetDevelopment tools for .Net
Development tools for .Net
 
Engaging a Back-end Developer to Build Your Tech Backbone
Engaging a Back-end Developer to Build Your Tech BackboneEngaging a Back-end Developer to Build Your Tech Backbone
Engaging a Back-end Developer to Build Your Tech Backbone
 
Ajaya_resume
Ajaya_resumeAjaya_resume
Ajaya_resume
 
Link quries
Link quriesLink quries
Link quries
 
Blowing up the Monolith: Practical Advice on Microservices
Blowing up the Monolith: Practical Advice on MicroservicesBlowing up the Monolith: Practical Advice on Microservices
Blowing up the Monolith: Practical Advice on Microservices
 
icv
icvicv
icv
 
Application Modernisation with PKS
Application Modernisation with PKSApplication Modernisation with PKS
Application Modernisation with PKS
 
Application Modernisation with PKS
Application Modernisation with PKSApplication Modernisation with PKS
Application Modernisation with PKS
 
Skanthan thiru
Skanthan thiruSkanthan thiru
Skanthan thiru
 
DOES SFO 2016 - Cornelia Davis - DevOps: Who Does What?
DOES SFO 2016 - Cornelia Davis - DevOps: Who Does What?DOES SFO 2016 - Cornelia Davis - DevOps: Who Does What?
DOES SFO 2016 - Cornelia Davis - DevOps: Who Does What?
 
Secure-Net Technologies
Secure-Net TechnologiesSecure-Net Technologies
Secure-Net Technologies
 
Achieve Sub-Second Analytics on Apache Kafka with Confluent and Imply
Achieve Sub-Second Analytics on Apache Kafka with Confluent and ImplyAchieve Sub-Second Analytics on Apache Kafka with Confluent and Imply
Achieve Sub-Second Analytics on Apache Kafka with Confluent and Imply
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
 
Perfsystems- Consulting Services
Perfsystems- Consulting ServicesPerfsystems- Consulting Services
Perfsystems- Consulting Services
 

More from NicheTech Com. Solutions Pvt. Ltd.

More from NicheTech Com. Solutions Pvt. Ltd. (10)

Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes AhmedabadJava Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
Java Training Ahmedabad , how to Insert Data in Servlet, iOS Classes Ahmedabad
 
Java Training Ahmedabad , Introduction of java web development
Java Training Ahmedabad , Introduction of java web developmentJava Training Ahmedabad , Introduction of java web development
Java Training Ahmedabad , Introduction of java web development
 
Android Training Ahmedabad , Android Course Ahmedabad, Android architecture
Android Training Ahmedabad , Android Course Ahmedabad, Android architectureAndroid Training Ahmedabad , Android Course Ahmedabad, Android architecture
Android Training Ahmedabad , Android Course Ahmedabad, Android architecture
 
Cocoa and MVC in ios, iOS Training Ahmedbad , iOS classes Ahmedabad
Cocoa and MVC in ios, iOS Training Ahmedbad , iOS classes Ahmedabad Cocoa and MVC in ios, iOS Training Ahmedbad , iOS classes Ahmedabad
Cocoa and MVC in ios, iOS Training Ahmedbad , iOS classes Ahmedabad
 
Objective of c in IOS , iOS Live Project Training Ahmedabad, MCA Live Project...
Objective of c in IOS , iOS Live Project Training Ahmedabad, MCA Live Project...Objective of c in IOS , iOS Live Project Training Ahmedabad, MCA Live Project...
Objective of c in IOS , iOS Live Project Training Ahmedabad, MCA Live Project...
 
Basic Android
Basic AndroidBasic Android
Basic Android
 
Android Training Ahmedabad , Android Project Training Ahmedabad, Android Live...
Android Training Ahmedabad , Android Project Training Ahmedabad, Android Live...Android Training Ahmedabad , Android Project Training Ahmedabad, Android Live...
Android Training Ahmedabad , Android Project Training Ahmedabad, Android Live...
 
Introduction of Mastert page
Introduction of Mastert pageIntroduction of Mastert page
Introduction of Mastert page
 
Introduction of wordpress, Wordpress Training Ahmedabad, Wordpress Class Ahme...
Introduction of wordpress, Wordpress Training Ahmedabad, Wordpress Class Ahme...Introduction of wordpress, Wordpress Training Ahmedabad, Wordpress Class Ahme...
Introduction of wordpress, Wordpress Training Ahmedabad, Wordpress Class Ahme...
 
Introduction of Oscommerce, PHP Live Project Training Ahmedabad, PHP Course A...
Introduction of Oscommerce, PHP Live Project Training Ahmedabad, PHP Course A...Introduction of Oscommerce, PHP Live Project Training Ahmedabad, PHP Course A...
Introduction of Oscommerce, PHP Live Project Training Ahmedabad, PHP Course A...
 

Recently uploaded

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 

Introduction Of Linq , ASP.NET Training Ahmedabad, ASP.NET Course Ahmedabad

  • 2. LINQ TO SQL Prepared By: Nilesh R. Parmar
  • 3.  Introduction  How LINQ works?  Architecture  Underline Execution  Execution Mode  Why LINQ?  LINQ to Objects  LINQ to SQL  Select in LINQ  Insert in LINQ  Update in LINQ  Delete in LINQ NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 4.  Language Integrated Query  A set of language extensions that allows you to perform queries without leaving the comfort of the programming language (C# or VB)  Defines keywords that you use to build query expressions like select, from and where  Select, filter, sort, group or transforms the data NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 5. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 6. var contacts = from c in customers where c.State == "WA" select new { c.Name, c.Phone }; var contacts = customers .Where(c => c.State == "WA") .Select(c => new { c.Name, c.Phone }); ExtensionExtension methodsmethods LambdaLambda expressionsexpressions QueryQuery expressionsexpressions ObjectObject initializersinitializers AnonymousAnonymous typestypes Local variableLocal variable typetype inferenceinference NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 7.  Deferred Execution var data = from d in ibEntity.Tourists where d.IsIBMember == true select d; inMemoryData = data.ToList(); NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 8.  Immediate Execution var city = ( from c in inMemoryData select (c.City.ToUpper()) ).Distinct(); NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 9.  Unifies the way of accessing data from different data sources.  Compile-time checking of all queries, reduces run time errors.  Strongly typed.  Can be applied in any project layer (UI/Business/Data)  Extensive Intellisence/Debugging support. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 10.  Query can be executed on collections & objects that implements IEnumerable interface.  LINQ queries Vs. foreach loops:  Concise and readable, especially when filtering multiple conditions.  Provides powerful filtering, ordering, and grouping capabilities with a minimum of application code. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 11.  Query data in the SQL Server Database  Implicitly transforms LINQ expression into a set of SQL queries  Advantages:  Flexibility  Change Tracking & Batch Updates  Less code NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 12. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 13. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 14. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 15. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 16. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 17. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 18. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 19. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 20. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 21. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 22. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 23. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C
  • 24. NicheTech Computer Solutions Pvt. Ltd Prepared By: Nilesh R. ParmarC C

Editor's Notes

  1. 10/07/13 11:22 © 2006 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.