We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a503110 commit 0f1f680Copy full SHA for 0f1f680
FSharp/FSharpRepoDB/FSharpRepoDB/FSharpRepoDB.fsproj
@@ -7,12 +7,10 @@
7
8
<ItemGroup>
9
<Content Include="Database\Schema.sql" />
10
- <Compile Include="Models\Person.fs" />
+ <Compile Include="Types.fs" />
11
<Compile Include="Program.fs" />
12
</ItemGroup>
13
14
- <ItemGroup />
15
-
16
17
<PackageReference Include="RepoDb.SqlServer" Version="1.0.13" />
18
FSharp/FSharpRepoDB/FSharpRepoDB/Models/Person.fs
FSharp/FSharpRepoDB/FSharpRepoDB/Types.fs
@@ -0,0 +1,11 @@
1
+namespace FSharpRepoDB
2
+
3
+/// Group your types and other constructs that allow you
4
+/// to represent your domain
5
+module Types =
6
+ type Person =
+ { Id: int64
+ Name: string
+ Age: int
+ Address: string
+ IsActive: bool }
0 commit comments