SlideShare une entreprise Scribd logo
1  sur  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

Contenu connexe

Tendances

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
 

Tendances (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
 

Similaire à 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
 

Similaire à 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
 

Plus de NicheTech Com. Solutions Pvt. Ltd.

Plus de 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...
 

Dernier

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Dernier (20)

Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 

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

Notes de l'éditeur

  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.