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: README.md
+15-12Lines changed: 15 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,19 @@
3
3
This library exposes SQL Server Database objects in a type safe manner to F# code, by the mean of [Type Providers](https://docs.microsoft.com/en-us/dotnet/fsharp/tutorials/type-providers/)
4
4
5
5
You can reference it in F# Interactive that ships with Visual Studio
6
+
6
7
```fsharp
7
8
#r "nuget: FSharp.Data.SqlClient"
8
9
open FSharp.Data
9
10
open FSharp.Data.SqlClient
10
11
let [<Literal>] connectionString = "Server=.;Database=AdventureWorks2012;Trusted_Connection=True;"
11
12
type MyCommand = SqlCommandProvider<"""
12
13
select
13
-
data.a
14
+
data.a
14
15
from
15
-
(select 1 a union all select 2 union all select 3) data
16
+
(select 1 a union all select 2 union all select 3) data
@@ -120,15 +129,9 @@ use cmd2 = new SqlCommandProvider<SampleCommandRelative.Text, ConnectionStrings.
120
129
121
130
More information can be found in the [documentation](http://fsprojects.github.io/FSharp.Data.SqlClient/).
122
131
123
-
## Build Status
124
-
125
-
| Windows | Linux | NuGet |
126
-
|:-------:|:-----:|:-----:|
127
-
|[](https://ci.appveyor.com/project/fsgit/fsharp-data-sqlclient)|[](https://travis-ci.org/fsprojects/FSharp.Data.SqlClient)|[](https://www.nuget.org/packages/FSharp.Data.SqlClient/)|
The default maintainer account for projects under "fsprojects" is [@fsprojectsgit](https://github.com/fsprojectsgit) - F# Community Project Incubation Space (repo management)
0 commit comments