In this chapter, you will learn about F# type providers. Type providers let you bridge the gap between language and data —a gap you may not even have realized existed until you give type providers a try. You’ll learn to apply type providers to CSV files, HTML sources, and SQL Server databases. You’ll learn a bit about the potential pitfalls of type providers and how to mitigate them. Finally, you’ll learn how to use a query expression to combine the results of two type providers.
What Are Type Providers?
Type providers are a feature that is more or less ...