It seems that F# Type Providers are the leading feature of F# 3.0. My question is simple, what should I use it for? I am scientifically oriented (engineering). The only examples I have seen so far are related to web - is it the only real use of this feature?

EDIT:

  1. There is a nice introduction of Type Providers together with information on when to use them and when not to use them here.

  2. A really nice example on how to implement a Vector type is here: http://www.mindscapehq.com/blog/index.php/2011/09/19/f-type-providers-as-if-by-magic/

link|improve this question

the original demo Don did for this was allways with a type-provider for chemical-elements... – Carsten König Sep 18 '11 at 15:04
But it was just a retrieval of data from the web, right? I do not think I would ever need to retrieve data from the web. That's why I ask if there is any other use aside from that. – Oldrich Svec Sep 18 '11 at 15:08
It's not just web. You can e.g. use it for generating entities for some SQL database during compile time. – svick Sep 18 '11 at 15:10
I do not need that either. Any other use? Sad that almost the only new feature in the language I love and I do not know where I could use it... – Oldrich Svec Sep 18 '11 at 15:16
1  
Disclaimer : I haven't used it/only saw the presentation, but from what I've seen type providers allow you to hook in to the compiler/IDE and generate Types on the fly. Are you using '?' operator for dynamic property access ? You could probably move that code in to compile time and get IDE completion/compiler type checking. – Rafael Munitić Sep 18 '11 at 15:49
show 4 more comments
feedback

closed as not constructive by svick, Carsten König, gradbot, Tomas Petricek, Richard Sep 19 '11 at 7:15

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.