You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SqlClient.DesignTime/SqlClientProvider.fs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ open Microsoft.FSharp.Quotations
13
13
openProviderImplementation.ProvidedTypes
14
14
15
15
openFSharp.Data.SqlClient
16
+
openFSharp.Data.SqlClient.Internals
16
17
17
18
[<TypeProvider>]
18
19
[<CompilerMessageAttribute("This API supports the FSharp.Data.SqlClient infrastructure and is not intended to be used directly from your code.",101, IsHidden =true)>]
@@ -140,7 +141,7 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this =
Copy file name to clipboardExpand all lines: src/SqlClient/DataTable.fs
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,10 @@
1
-
namespaceFSharp.Data
1
+
namespaceFSharp.Data.SqlClient
2
2
3
3
openSystem
4
4
openSystem.Data
5
5
openSystem.Data.SqlClient
6
6
openSystem.Collections.Generic
7
+
openFSharp.Data.SqlClient.Internals
7
8
8
9
[<Sealed>]
9
10
[<CompilerMessageAttribute("This API supports the FSharp.Data.SqlClient infrastructure and is not intended to be used directly from your code.",101, IsHidden =true)>]
@@ -111,3 +112,10 @@ type DataTable<'T when 'T :> DataRow>(selectCommand: SqlCommand, ?connectionStri
111
112
timeout |> Option.iter (fun x -> bulkCopy.BulkCopyTimeout <- int x.TotalSeconds)
0 commit comments