gpt4 book ai didi

c# - F#:连接到 Azure SQL 数据库?

转载 作者:行者123 更新时间:2023-11-30 12:21:33 25 4
gpt4 key购买 nike

我想连接到我的 Azure 数据库并通过 .fsx 文件使用它。

为 C# 列出的方法是:

SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder();
builder.DataSource = "your_server.database.windows.net";
builder.UserID = "your_user";
builder.Password = "your_password";
builder.InitialCatalog = "your_database";

using (SqlConnection connection = new SqlConnection(builder.ConnectionString))
...

在 F# 中是否有更好的方法来执行此操作,或者我应该尝试从 C# 推断到 F#?我知道一旦创建了字符串,我们就可以使用 SqlProgrammabilityProvider 等类型提供程序。

主要是寻找有关连接到类似于此 C# 服务器的 Azure SQL 服务器的 F# 指南:

https://learn.microsoft.com/en-us/azure/sql-database/sql-database-connect-query-dotnet-core

Microsoft 显然制作了大量没有 F# 等效内容的 C# 内容:(

最佳答案

我在 F# 中使用这个出色的库进行数据库访问:

https://fsprojects.github.io/SQLProvider/core/general.html

具体查看 MS SQL 部分以连接到 MS SQL 数据库。

关于c# - F#:连接到 Azure SQL 数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45366758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com