MSSQL SSDT Provider
The SSDT provider allows types to be provided via SQL Server schema scripts in an SSDT project. No live database connection is required!
Parameters
DatabaseVendor (required)
Use MSSQLSERVER_SSDT
from the FSharp.Data.Sql.Common.DatabaseProviderTypes
enumeration.
[<Literal>]
let dbVendor = Common.DatabaseProviderTypes.MSSQLSERVER_SSDT
SsdtPath (required)
The SsdtPath must point to a .dacpac file.
Notes:
- A .dacpac file is generated when an SSDT project is built and can be found in the bin/Debug folder.
- For development, you can set the SsdtPath to point to the generated .dacpac file in the SSDT project Debug folder. (Using a
[<Literal>]
ssdtPath allows relative pathing). - For deployment, the SSDT provider will search for the .dacpac file in the entry assembly folder.
- Linking the generated .dacpac file to your project and setting it to
CopyToOutputDirectory
will ensure that it will exist in the assembly folder for deployment.
[<Literal>]
let ssdtPath = __SOURCE_DIRECTORY__ + @"/../../files/mssqlssdt/AdventureWorks_SSDT.dacpac"
Example of the minimal required options for the SSDT provider:
type DB = SqlDataProvider<Common.DatabaseProviderTypes.MSSQLSERVER_SSDT, SsdtPath = ssdtPath>
// To reload schema: 1) uncomment the line below; 2) save; 3) recomment; 4) save again and wait.
//DB.GetDataContext().``Design Time Commands``.ClearDatabaseSchemaCache
Reloading the schema
Keeping the above Design Time Command commented out just below your SqlDataProvider type helps refresh the generated types after a schema change.
Optional Parameters
UseOptionTypes
If FSharp.Data.Sql.Common.NullableColumnType.OPTION, F# option types will be used in place of nullable database columns. If NO_OPTION, you will always receive the default value of the column's type even if it is null in the database.
Table Names Filter
The SSDT provider currently supports a simple comma-delimited list of allowed table names (wildcards are not currently supported).
AdventureWorks Example
let ctx = DB.GetDataContext()
let orderDetails =
query {
for o in ctx.SalesLt.SalesOrderHeader do
for d in o.``SalesLT.SalesOrderDetail by SalesOrderID`` do
select (o.SalesOrderId, o.OrderDate, o.SubTotal, d.OrderQty, d.ProductId, d.LineTotal)
}
What is SSDT?
SQL Server Data Tools (SSDT) is a modern development tool for building SQL Server relational databases, databases in Azure SQL, Analysis Services (AS) data models, Integration Services (IS) packages, and Reporting Services (RS) reports.
It allows you to quickly compare and synchronize schema changes between your SQL Server database and the current state of your .sql scripts in source control. Schemas can be synchronized bi-directionally (SSDT -> SQL Server or SQL Server -> SSDT).
Advantages of using the SSDT provider
The main advantage of using the SSDT provider is that it does not require a live connection to the database. This makes running on a build server easier without manually spinning up a database instance.
Another advantage is that since your SSDT scripts are checked into your source control, you can easily have different schemas in each branch so that each branch can compile according to its local schema snapshot.
How to create an SSDT Project
SSDT Projects can be created in two ways: * Visual Studio SSDT * Azure Data Studio via the SQL Database Projects Extension
Known Issues
Tables
- User-defined data types are not yet supported
- Computed table columns will default to a data type of
System.Object
since the data type is not listed in the .dacpac file. (See Type Annotations below.)
Views
- Computed view columns will default to a data type of
System.Object
since the data type is not listed in the .dacpac file. (See Type Annotations below.)
Type Annotations
As a workaround for computed table and view columns having unresolved data types, the SSDT provider allows you to add type annotations directly to the table or view as in-line comments.
In the SalesOrderDetail.sql example table below, [LineTotal]
is a computed column. Since the .dacpac file cannot determine the datatype for computed columns, the data type of the generated property will be defaulted to obj
.
As a workaround, an in-line type annotation /* MONEY NOT NULL /*
can be added.
NOTE: for computed table columns, the comment annotation must be contained within the parentheses.
|
In the example dbo.v_Hours
view below, the Hours
column is not linked back to the dbo.TimeEntries.Hours
column in the .dacpac metadata because it is a calculated field, so the data type of the generated property will be defaulted to obj
.
Adding a type annotation within an in-line comment will inform the SSDT provider of the data type to use in the generated Hours
property:
|
Notes:
- If no null constraint is added after the column type, nulls will be allowed by default.
- The annotations are case-insensitive.
- Hovering over a generated view property will designate if the data type was derived from a type annotation (or if it needs one).
- Do not include length information in the type annotation. For example, use
varchar
, notvarchar(20)
.
Functions
- Functions are not yet implemented
Individuals
- Get "Individuals" feature is not implemented (because it requires a database connection)
namespace FSharp
--------------------
namespace Microsoft.FSharp
namespace FSharp.Data
--------------------
namespace Microsoft.FSharp.Data
type LiteralAttribute = inherit Attribute new: unit -> LiteralAttribute
--------------------
new: unit -> LiteralAttribute
<summary>Typed representation of a database</summary> <param name='ConnectionString'>The connection string for the SQL database</param> <param name='ConnectionStringName'>The connection string name to select from a configuration file</param> <param name='DatabaseVendor'> The target database vendor</param> <param name='IndividualsAmount'>The amount of sample entities to project into the type system for each SQL entity type. Default 50. Note GDPR/PII regulations if using individuals with ContextSchemaPath.</param> <param name='UseOptionTypes'>If set, F# option types will be used in place of nullable database columns. If not, you will always receive the default value of the column's type even if it is null in the database.</param> <param name='ResolutionPath'>The location to look for dynamically loaded assemblies containing database vendor specific connections and custom types. Types used in desing-time: If no better clue, prefer .NET Standard 2.0 versions. Semicolon to separate multiple.</param> <param name='Owner'>Oracle: The owner of the schema for this provider to resolve. PostgreSQL: A list of schemas to resolve, separated by spaces, newlines, commas, or semicolons.</param> <param name='CaseSensitivityChange'>Should we do ToUpper or ToLower when generating table names?</param> <param name='TableNames'>Comma separated table names list to limit a number of tables in big instances. The names can have '%' sign to handle it as in the 'LIKE' query (Oracle and MSSQL Only)</param> <param name='ContextSchemaPath'>The location of the context schema previously saved with SaveContextSchema. When not empty, will be used to populate the database schema instead of retrieving it from then database.</param> <param name='OdbcQuote'>Odbc quote characters: Quote characters for the table and column names: `alias`, [alias]</param> <param name='SQLiteLibrary'>Use System.Data.SQLite or Mono.Data.SQLite or select automatically (SQLite only)</param> <param name='SsdtPath'>A path to an SSDT .dacpac file.'</param>
<summary>Returns an instance of the SQL Provider using the static parameters</summary>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(selectOperations: SelectOperations) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='selectOperations'>Execute select-clause operations in SQL database rather than .NET-side.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(commandTimeout: int) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='commandTimeout'>SQL command timeout. Maximum time for single SQL-command in seconds.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(transactionOptions: Transactions.TransactionOptions) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='transactionOptions'>TransactionOptions for the transaction created on SubmitChanges.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(connectionString: string) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='connectionString'>The database runtime connection string</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(connectionString: string, selectOperations: SelectOperations) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='connectionString'>The database runtime connection string</param><param name='selectOperations'>Execute select-clause operations in SQL database rather than .NET-side.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(transactionOptions: Transactions.TransactionOptions, commandTimeout: int) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='transactionOptions'>TransactionOptions for the transaction created on SubmitChanges.</param><param name='commandTimeout'>SQL command timeout. Maximum time for single SQL-command in seconds.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(connectionString: string, commandTimeout: int) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='connectionString'>The database runtime connection string</param><param name='commandTimeout'>SQL command timeout. Maximum time for single SQL-command in seconds.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(connectionString: string, transactionOptions: Transactions.TransactionOptions) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='connectionString'>The database runtime connection string</param><param name='transactionOptions'>TransactionOptions for the transaction created on SubmitChanges.</param>
(+0 other overloads)
SqlDataProvider<...>.GetDataContext(connectionString: string, resolutionPath: string) : SqlDataProvider<...>.dataContext
<summary>Returns an instance of the SQL Provider using the static parameters</summary><param name='connectionString'>The database runtime connection string</param><param name='resolutionPath'>The location to look for dynamically loaded assemblies containing database vendor specific connections and custom types. Types used in desing-time: If no better clue, prefer .NET Standard 2.0 versions. Semicolon to separate multiple.</param>
(+0 other overloads)
<summary>SalesLT.SalesOrderHeader / General sales order information. / The base table SalesOrderHeader belonging to schema SalesLT</summary>
<summary>SalesOrderID: / Simple Column / Primary key. / int</summary>
<summary>OrderDate: / Simple Column / Dates the sales order was created. / datetime</summary>
<summary>SubTotal: / Simple Column / Sales subtotal. Computed as SUM(SalesOrderDetail.LineTotal)for the appropriate SalesOrderID. / money</summary>
<summary>OrderQty: / Simple Column / Quantity ordered per product. / smallint</summary>
<summary>ProductID: / Simple Column / Product sold to customer. Foreign key to Product.ProductID. / int</summary>
<summary>LineTotal: / Computed Column / Per product subtotal. Computed as UnitPrice * (1 - UnitPriceDiscount) * OrderQty. / MONEY</summary>