Skip to content

Commit 41ceb0e

Browse files
committed
Move lines about reloading schema
1 parent b4b683e commit 41ceb0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/recipes/storage/use-sqlprovider-ssdt.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ open FSharp.Data.Sql
101101
[<Literal>]
102102
let SsdtPath = __SOURCE_DIRECTORY__ + @"/../../ssdt/SafeTodoDB/bin/Debug/SafeTodoDB.dacpac"
103103
104-
// TO RELOAD SCHEMA: 1) uncomment the line below; 2) save; 3) recomment; 4) save again and wait.
105-
//DB.GetDataContext().``Design Time Commands``.ClearDatabaseSchemaCache
106-
107104
type DB =
108105
SqlDataProvider<
109106
Common.DatabaseProviderTypes.MSSQLSERVER_SSDT,
110107
SsdtPath = SsdtPath,
111108
UseOptionTypes = Common.NullableColumnType.OPTION
112109
>
110+
111+
//TO RELOAD SCHEMA: 1) uncomment the line below; 2) save; 3) recomment; 4) save again and wait.
112+
//DB.GetDataContext().``Design Time Commands``.ClearDatabaseSchemaCache
113113
114114
let createContext (connectionString: string) =
115115
DB.GetDataContext(connectionString)

0 commit comments

Comments
 (0)