Is there a way to provide a connection string to Linq-To-Sql data provider in F# from App.Config file.
I have tried the following just for testing:
let mutable connString = @"Data Source=PCSQLEXPRESS;Initial Catalog=NortwindDB;Integrated Security=True"
type SqlConnection = SqlDataConnection<ConnectionString = connString>
but I get an error message "This is not a constant expression or valid custom attribute value"
Thanks