I am using FSharp.Data SqlDataProvider (type provider) to access my data. Although this is a very good way to get data in F # types, this obviously requires a database with the correct schema in each development environment where I want to compile the code.
Is there any trick that does not require installing the database with the correct schema at compile time? How is a static schema file or conditional compilation? (In general, the application will be able to execute without installing the database)
source
share