I'm having trouble getting the connection string initialized by a text file when using LinqToSQL.
I am trying to create a DataContext using the following connection string:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\dat\;Extended Properties=text;HDR=Yes;FMT=Delimited
I keep getting errors that the "Keyword Provider is not supported." I also tried 'providerName' and got the same error.
I wonder if this disguises the inability to support the use of text files as connections. Can LinqToSql do what I want? If so, can anyone provide a working example string?
Thanks in advance.
source share