Linq tools

Jim Wooley
Jim WooleyTechnology Consultant at Slalom Consulting
LINQ Tools,[object Object],Jim Wooley,[object Object],www.ThinqLinq.com,[object Object],www.LinqInAction.net,[object Object],www.Twitter.com/LinqKinq,[object Object]
Agenda,[object Object],Samples and Plugins,[object Object],Stand alone profilers,[object Object],Designer extensions,[object Object],Code Gen Extensions,[object Object],Providers,[object Object]
Samples,[object Object],What is it? The LINQ Samples include tools, addins and visualizers,[object Object],Download Site: http://code.msdn.microsoft.com/csharpsamples,[object Object],Example Problem(s) it solves,[object Object],Allows you to peak under the covers and see what LINQ is doing,[object Object],Makes it easier to work with XML in C#,[object Object],Installation Notes:,[object Object],Find the downloads in Visual Studio clicking on Help then Samples,[object Object]
LINQ Samples,[object Object]
EF Visualizer,[object Object],What is it? Visualizer for Entity Framework Queries,[object Object],Download Site: www.rajvenkatesh.com/projects,[object Object],Example Problem(s) it solvesSee the queries generated by the Entity Framework.,[object Object],Installation Notes: XCopy Deploy library into Visualizers directory,[object Object]
Query profiler,[object Object],$,[object Object],What is it? SQL Server’s built in profiler tool to show all requests evaluated by server,[object Object],Download Site: N/A,[object Object],Example Problem(s) it solvesSee the queries issued to the database, including updates.,[object Object],Installation Notes: Installed with the SQL Server client tools,[object Object],Usage Notes: Works only with SQL Server,[object Object]
Huagati LINQ to SQL Profiler,[object Object],$,[object Object],What is it? Profiling tool to monitor DataContext actions.,[object Object],Download Site: http://www.huagati.com/L2SProfiler/,[object Object],Example Problem(s) it solvesDifficult to see database actions in a running application.,[object Object],Installation Notes: Custom installer.,[object Object],Usage Notes: Need to add extension methods on DataContext to enable logging.,[object Object]
L2S Prof,[object Object],$,[object Object],What is it? Profiling tool to monitor DataContext actions.,[object Object],Download Site: http://l2sprof.com/home,[object Object]
LINQPad,[object Object],What is it? Stand alone tool to prototype LINQ and .Net code.,[object Object],Download Site: http://www.LinqPad.Net,[object Object],Example Problem(s) it solvesLearn LINQ without needing to create full solutions.Easily prototype LINQ queries.,[object Object],Installation Notes: X Copy Deployment,[object Object],Usage Notes: Includes samples from “C# In  a Nutshell“ and “LINQ in Action”,[object Object]
LINQ Tools – EDM Designer,[object Object],What is it? Replacement editor for managing large EDMX models,[object Object],Download Site: http://www.codeplex.com/edmdesigner,[object Object],Example Problem(s) it solvesManaging large databases is difficult in a single view.,[object Object],Installation Notes: X-copy deploy (includes source),[object Object],Usage Notes: http://msmvps.com/blogs/matthieu/archive/ tags/EDM+Designer/ default.aspx,[object Object]
Huagati DBML/EDMX Tools,[object Object],$,[object Object],What is it? VS Add-in to manage refreshing models and DB Schemas,[object Object],Download Site: http://www.huagati.com/dbmltools/,[object Object],Example Problem(s) it solvesExisting tools have problems when the DB Schema changes. This adds refresh abilities.,[object Object],Usage Notes: Integrated into Visual Studio,[object Object]
Code Gen - L2ST4,[object Object],What is it? T4 Code Generation Templates for LINQ to SQL,[object Object],Download Site: http://l2st4.codeplex.com/,[object Object],Example Problem(s) it solvesCustomize the code created for the LINQ to SQL Classes,[object Object],Installation Notes: Xcopy deployment of 2 files. Remove build action on .dbml file.,[object Object],Usage Notes: T4 used heavily in VS 2010,[object Object]
Code Gen– PLinqo,[object Object],$,[object Object],What is it? Supercharged LINQ to SQL,[object Object],Download Site: http://plinqo.com,[object Object],Example Problem(s) it solvesAdds features missing in LINQ to SQL.,[object Object],Installation Notes: Requires CodeSmith(but see http://plinqo.com/offer.ashx),[object Object]
LINQ Providers – I4O,[object Object],What is it? Indexed LINQ to Objects,[object Object],Download Site: http://www.codeplex.com/i4o,[object Object],Example Problem(s) it solvesLINQ to Object joins perform use table scans. This adds hashtablesto optimize frequent lookups.,[object Object],Installation Notes: Build and add reference,[object Object],Usage Notes: Explained at http://blog.magenic.com/blogs/aarone/archive/2007/04/09/ Introducing-i4o.aspx,[object Object]
LINQ Providers – PLINQ,[object Object],What is it? Parallel LINQ To Objects,[object Object],Download Site: N/A: Included in .Net 4.0,[object Object],Example Problem(s) it solvesProvides Multi-core support for LINQ to Objects queries,[object Object],Usage Notes: Add the reference and then make your query parallel using .AsParallel,[object Object]
LINQ Providers – LINQ to XSD,[object Object],What is it? Typed LINQ to XML,[object Object],Download Site: http://linqtoxsd.codeplex.com/,[object Object],Example Problem(s) it solvesLINQ to XML queries are not typesafe and don’t have intellisense.,[object Object],Installation Notes: See ReadMe.txt. Need to add Environment Variable.,[object Object],Usage Notes: Point the command line tool at a schema to generate the proxy classes.,[object Object]
LINQ Providers – LINQ to REST,[object Object],What is it? LINQ provider to consume ADO.Net Data Services,[object Object],Download Site: N/A: Included with .NET 3.5 sp 1,[object Object],Example Problem(s) it solvesADO.Net Data Services adds another query syntax in the URI. This abstracts that syntax.,[object Object],Installation Notes: Add reference,[object Object],Usage Notes: Many LINQ statements can’t be translated to URI causing runtime exceptions,[object Object]
LINQ Providers – LINQ to Twitter,[object Object],What is it? Sample LINQ provider to access the Twitter APIs,[object Object],Download Site: http://linqtotwitter.codeplex.com/,[object Object],Example Problem(s) it solvesUnderstand how to build custom LINQ providers against non-standard data sources,[object Object],Installation Notes: Build and add reference,[object Object],Usage Notes: Requires building for x86 for authentication. Also supports OAuth.,[object Object]
LINQ Providers – BLINQ,[object Object],What is it? Sample LINQ provider to access the BING API,[object Object],Download Site: http://www.nikhilk.net/BLinq-LINQ-over-Bing.aspx,[object Object],Example Problem(s) it solvesUnderstand how to build custom LINQ providers against non-standard data sources,[object Object],Installation Notes: Build and add reference,[object Object],Usage Notes: Requires an AppID from http://www.bing.com/developers,[object Object]
LINQ Providers – IQUeryable Toolkit,[object Object],What is it? Tool sample to understand parsing Iqueryable types.,[object Object],Download Site:  http://www.codeplex.com/IQToolkit,[object Object],Example Problem(s) it solvesBuilding a provider is difficult.,[object Object],Usage Notes: See Matt Warren’s impressive tome starting with http://blogs.gotdotnet.com/mattwar/archive/2007/07/30/linq-building-an-iqueryable-provider-part-i.aspx,[object Object]
Tool Types,[object Object]
Jim Wooley,[object Object],www.ThinqLinq.com,[object Object],www.LinqInAction.net,[object Object],www.Twitter.com/LinqKinq ,[object Object],Questions,[object Object],www.SpeakerRate.com/jwooley,[object Object]
1 of 22

Recommended

Introduction to Continuous Integration by
Introduction to Continuous IntegrationIntroduction to Continuous Integration
Introduction to Continuous IntegrationHùng Nguyễn Huy
261 views46 slides
How to use source control with apex? by
How to use source control with apex?How to use source control with apex?
How to use source control with apex?Oliver Lemm
5.8K views39 slides
Effective .NET Core Unit Testing with SQLite and Dapper by
Effective .NET Core Unit Testing with SQLite and DapperEffective .NET Core Unit Testing with SQLite and Dapper
Effective .NET Core Unit Testing with SQLite and DapperMike Melusky
174 views23 slides
ASP.NET Core Unit Testing by
ASP.NET Core Unit TestingASP.NET Core Unit Testing
ASP.NET Core Unit TestingShahed Chowdhuri
3.9K views43 slides
What is Jenkins | Jenkins Tutorial for Beginners | Edureka by
What is Jenkins | Jenkins Tutorial for Beginners | EdurekaWhat is Jenkins | Jenkins Tutorial for Beginners | Edureka
What is Jenkins | Jenkins Tutorial for Beginners | EdurekaEdureka!
1.8K views30 slides
Continuous Integration - Oracle Database Objects by
Continuous Integration - Oracle Database ObjectsContinuous Integration - Oracle Database Objects
Continuous Integration - Oracle Database ObjectsPrabhu Ramasamy
3.4K views19 slides

More Related Content

What's hot

Continuous delivery from the trenches by
Continuous delivery from the trenchesContinuous delivery from the trenches
Continuous delivery from the trenchesMichael Medin
418 views121 slides
Taking your version control to a next level with TFS and Git by
Taking your version control to a next level with TFS and GitTaking your version control to a next level with TFS and Git
Taking your version control to a next level with TFS and GitAlexander Vanwynsberghe
17.3K views60 slides
Version Control by
Version ControlVersion Control
Version ControlMatt Stoner
509 views40 slides
ASP.NET Core 1.0 Overview by
ASP.NET Core 1.0 OverviewASP.NET Core 1.0 Overview
ASP.NET Core 1.0 OverviewShahed Chowdhuri
3.1K views59 slides
Building Commercial Applications with Oracle Applications Express by Scott Sp... by
Building Commercial Applications with Oracle Applications Express by Scott Sp...Building Commercial Applications with Oracle Applications Express by Scott Sp...
Building Commercial Applications with Oracle Applications Express by Scott Sp...Enkitec
1.5K views15 slides
The ultimate cheat sheet on .net core, .net framework, and .net standard by
The ultimate cheat sheet on .net core, .net framework, and .net standardThe ultimate cheat sheet on .net core, .net framework, and .net standard
The ultimate cheat sheet on .net core, .net framework, and .net standardConcetto Labs
100 views21 slides

What's hot(20)

Continuous delivery from the trenches by Michael Medin
Continuous delivery from the trenchesContinuous delivery from the trenches
Continuous delivery from the trenches
Michael Medin418 views
Taking your version control to a next level with TFS and Git by Alexander Vanwynsberghe
Taking your version control to a next level with TFS and GitTaking your version control to a next level with TFS and Git
Taking your version control to a next level with TFS and Git
Building Commercial Applications with Oracle Applications Express by Scott Sp... by Enkitec
Building Commercial Applications with Oracle Applications Express by Scott Sp...Building Commercial Applications with Oracle Applications Express by Scott Sp...
Building Commercial Applications with Oracle Applications Express by Scott Sp...
Enkitec1.5K views
The ultimate cheat sheet on .net core, .net framework, and .net standard by Concetto Labs
The ultimate cheat sheet on .net core, .net framework, and .net standardThe ultimate cheat sheet on .net core, .net framework, and .net standard
The ultimate cheat sheet on .net core, .net framework, and .net standard
Concetto Labs100 views
PHP Symfony MicroServices Migration @MeeticTech by meeticTech
PHP Symfony MicroServices Migration @MeeticTechPHP Symfony MicroServices Migration @MeeticTech
PHP Symfony MicroServices Migration @MeeticTech
meeticTech4.9K views
Automated Testing Environment by Bugzilla, Testopia and Jenkins by walkerchang
Automated Testing Environment by Bugzilla, Testopia and JenkinsAutomated Testing Environment by Bugzilla, Testopia and Jenkins
Automated Testing Environment by Bugzilla, Testopia and Jenkins
walkerchang15.8K views
Continuous Integration for Oracle Database Development by Vladimir Bakhov
Continuous Integration for Oracle Database DevelopmentContinuous Integration for Oracle Database Development
Continuous Integration for Oracle Database Development
Vladimir Bakhov4.4K views
Dynamic bpm design by doing lightning talk by ITD Systems
Dynamic bpm design by doing lightning talkDynamic bpm design by doing lightning talk
Dynamic bpm design by doing lightning talk
ITD Systems1.1K views
Continous integration with jenkins by vodQA
Continous integration with jenkinsContinous integration with jenkins
Continous integration with jenkins
vodQA1.1K views
Why source control your Oracle Database? by Red Gate Software
Why source control your Oracle Database?Why source control your Oracle Database?
Why source control your Oracle Database?
Red Gate Software1.1K views
Quality Assurance using the Eclipse IDE by Eduard Moraru
Quality Assurance using the Eclipse IDEQuality Assurance using the Eclipse IDE
Quality Assurance using the Eclipse IDE
Eduard Moraru2.3K views
Anatomy of a Continuous Integration and Delivery (CICD) Pipeline by Robert McDermott
Anatomy of a Continuous Integration and Delivery (CICD) PipelineAnatomy of a Continuous Integration and Delivery (CICD) Pipeline
Anatomy of a Continuous Integration and Delivery (CICD) Pipeline
Robert McDermott80.4K views
Chicago alm user group tfs version control poster - tfvc and git by Dave Burnison
Chicago alm user group   tfs version control poster - tfvc and gitChicago alm user group   tfs version control poster - tfvc and git
Chicago alm user group tfs version control poster - tfvc and git
Dave Burnison3K views
Open Source Compliance for DevOps - OSCON 2017 by Bianca Xue Jiang
Open Source Compliance for DevOps - OSCON 2017Open Source Compliance for DevOps - OSCON 2017
Open Source Compliance for DevOps - OSCON 2017
Bianca Xue Jiang156 views

Similar to Linq tools

Light-up-your-out-of-the-box LightSwitch Application by
Light-up-your-out-of-the-box LightSwitch ApplicationLight-up-your-out-of-the-box LightSwitch Application
Light-up-your-out-of-the-box LightSwitch ApplicationBoulos Dib
924 views32 slides
Daniel Egan Msdn Tech Days Oc Day2 by
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan
682 views49 slides
Vs2005p by
Vs2005pVs2005p
Vs2005pcm_chitta
308 views19 slides
An Introduction To Linux Development Environment by
An Introduction To Linux Development EnvironmentAn Introduction To Linux Development Environment
An Introduction To Linux Development EnvironmentS. M. Hossein Hamidi
2.9K views31 slides
2017 03 25 Microsoft Hacks, How to code efficiently by
2017 03 25 Microsoft Hacks, How to code efficiently2017 03 25 Microsoft Hacks, How to code efficiently
2017 03 25 Microsoft Hacks, How to code efficientlyBruno Capuano
608 views53 slides
Brudnick Net Ppt Portfolio by
Brudnick Net Ppt PortfolioBrudnick Net Ppt Portfolio
Brudnick Net Ppt Portfoliobrudnick1212
208 views40 slides

Similar to Linq tools(20)

Light-up-your-out-of-the-box LightSwitch Application by Boulos Dib
Light-up-your-out-of-the-box LightSwitch ApplicationLight-up-your-out-of-the-box LightSwitch Application
Light-up-your-out-of-the-box LightSwitch Application
Boulos Dib924 views
Daniel Egan Msdn Tech Days Oc Day2 by Daniel Egan
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan682 views
2017 03 25 Microsoft Hacks, How to code efficiently by Bruno Capuano
2017 03 25 Microsoft Hacks, How to code efficiently2017 03 25 Microsoft Hacks, How to code efficiently
2017 03 25 Microsoft Hacks, How to code efficiently
Bruno Capuano608 views
Brudnick Net Ppt Portfolio by brudnick1212
Brudnick Net Ppt PortfolioBrudnick Net Ppt Portfolio
Brudnick Net Ppt Portfolio
brudnick1212208 views
Onion Architecture with S#arp by Gary Pedretti
Onion Architecture with S#arpOnion Architecture with S#arp
Onion Architecture with S#arp
Gary Pedretti4K views
DevNation by jwi11iams
DevNation DevNation
DevNation
jwi11iams243 views
49.INS2065.Computer Based Technologies.TA.NguyenDucAnh.pdf by cNguyn506241
49.INS2065.Computer Based Technologies.TA.NguyenDucAnh.pdf49.INS2065.Computer Based Technologies.TA.NguyenDucAnh.pdf
49.INS2065.Computer Based Technologies.TA.NguyenDucAnh.pdf
cNguyn50624111 views
Five Ways Automation Has Increased Application Deployment and Changed Culture by XebiaLabs
Five Ways Automation Has Increased Application Deployment and Changed CultureFive Ways Automation Has Increased Application Deployment and Changed Culture
Five Ways Automation Has Increased Application Deployment and Changed Culture
XebiaLabs576 views
Lightning web components by Cloud Analogy
Lightning web components Lightning web components
Lightning web components
Cloud Analogy1.7K views
Cloud Deployment Toolkit by Bret Piatt
Cloud Deployment ToolkitCloud Deployment Toolkit
Cloud Deployment Toolkit
Bret Piatt1.1K views
Whats New In 2010 (Msdn & Visual Studio) by Steve Lange
Whats New In 2010 (Msdn & Visual Studio)Whats New In 2010 (Msdn & Visual Studio)
Whats New In 2010 (Msdn & Visual Studio)
Steve Lange1.2K views
DOs and DONTs on the way to 10M users by Yoav Avrahami
DOs and DONTs on the way to 10M usersDOs and DONTs on the way to 10M users
DOs and DONTs on the way to 10M users
Yoav Avrahami1.3K views
Hnd201 Building Ibm Lotus Domino Applications With Ajax Plugins by dominion
Hnd201 Building Ibm Lotus Domino Applications With Ajax PluginsHnd201 Building Ibm Lotus Domino Applications With Ajax Plugins
Hnd201 Building Ibm Lotus Domino Applications With Ajax Plugins
dominion606 views

More from Jim Wooley

Improving code quality with Roslyn analyzers by
Improving code quality with Roslyn analyzersImproving code quality with Roslyn analyzers
Improving code quality with Roslyn analyzersJim Wooley
828 views41 slides
Tearing down the //build/ 2016 conference by
Tearing down the //build/ 2016 conferenceTearing down the //build/ 2016 conference
Tearing down the //build/ 2016 conferenceJim Wooley
373 views11 slides
Ssdt wooley by
Ssdt wooleySsdt wooley
Ssdt wooleyJim Wooley
465 views8 slides
Windows 8 as an Application Integration Hub by
Windows 8 as an Application Integration HubWindows 8 as an Application Integration Hub
Windows 8 as an Application Integration HubJim Wooley
499 views17 slides
Reactive Extensions for JavaScript by
Reactive Extensions for JavaScriptReactive Extensions for JavaScript
Reactive Extensions for JavaScriptJim Wooley
2.1K views25 slides
Entity Framework Migration by
Entity Framework MigrationEntity Framework Migration
Entity Framework MigrationJim Wooley
883 views25 slides

More from Jim Wooley(8)

Improving code quality with Roslyn analyzers by Jim Wooley
Improving code quality with Roslyn analyzersImproving code quality with Roslyn analyzers
Improving code quality with Roslyn analyzers
Jim Wooley828 views
Tearing down the //build/ 2016 conference by Jim Wooley
Tearing down the //build/ 2016 conferenceTearing down the //build/ 2016 conference
Tearing down the //build/ 2016 conference
Jim Wooley373 views
Windows 8 as an Application Integration Hub by Jim Wooley
Windows 8 as an Application Integration HubWindows 8 as an Application Integration Hub
Windows 8 as an Application Integration Hub
Jim Wooley499 views
Reactive Extensions for JavaScript by Jim Wooley
Reactive Extensions for JavaScriptReactive Extensions for JavaScript
Reactive Extensions for JavaScript
Jim Wooley2.1K views
Entity Framework Migration by Jim Wooley
Entity Framework MigrationEntity Framework Migration
Entity Framework Migration
Jim Wooley883 views
Dynamic programming in a statically typed world by Jim Wooley
Dynamic programming in a statically typed worldDynamic programming in a statically typed world
Dynamic programming in a statically typed world
Jim Wooley292 views

Recently uploaded

Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...ShapeBlue
196 views62 slides
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... by
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...ShapeBlue
108 views12 slides
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti... by
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...ShapeBlue
141 views29 slides
"Surviving highload with Node.js", Andrii Shumada by
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada Fwdays
58 views29 slides
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit... by
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...ShapeBlue
162 views25 slides
The Role of Patterns in the Era of Large Language Models by
The Role of Patterns in the Era of Large Language ModelsThe Role of Patterns in the Era of Large Language Models
The Role of Patterns in the Era of Large Language ModelsYunyao Li
91 views65 slides

Recently uploaded(20)

Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by ShapeBlue
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
ShapeBlue196 views
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... by ShapeBlue
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
ShapeBlue108 views
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti... by ShapeBlue
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
DRaaS using Snapshot copy and destination selection (DRaaS) - Alexandre Matti...
ShapeBlue141 views
"Surviving highload with Node.js", Andrii Shumada by Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays58 views
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit... by ShapeBlue
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
Transitioning from VMware vCloud to Apache CloudStack: A Path to Profitabilit...
ShapeBlue162 views
The Role of Patterns in the Era of Large Language Models by Yunyao Li
The Role of Patterns in the Era of Large Language ModelsThe Role of Patterns in the Era of Large Language Models
The Role of Patterns in the Era of Large Language Models
Yunyao Li91 views
Business Analyst Series 2023 - Week 4 Session 8 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 8Business Analyst Series 2023 -  Week 4 Session 8
Business Analyst Series 2023 - Week 4 Session 8
DianaGray10145 views
NTGapps NTG LowCode Platform by Mustafa Kuğu
NTGapps NTG LowCode Platform NTGapps NTG LowCode Platform
NTGapps NTG LowCode Platform
Mustafa Kuğu437 views
Optimizing Communication to Optimize Human Behavior - LCBM by Yaman Kumar
Optimizing Communication to Optimize Human Behavior - LCBMOptimizing Communication to Optimize Human Behavior - LCBM
Optimizing Communication to Optimize Human Behavior - LCBM
Yaman Kumar38 views
Initiating and Advancing Your Strategic GIS Governance Strategy by Safe Software
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
Safe Software184 views
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda... by ShapeBlue
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
ShapeBlue164 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue199 views
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... by The Digital Insurer
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...
Business Analyst Series 2023 - Week 4 Session 7 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 7Business Analyst Series 2023 -  Week 4 Session 7
Business Analyst Series 2023 - Week 4 Session 7
DianaGray10146 views
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... by Moses Kemibaro
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Moses Kemibaro35 views
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue by ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlueWhat’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
ShapeBlue265 views
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue by ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
ShapeBlue224 views

Linq tools

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.