gpt4 book ai didi

c# - 我应该如何从 WCF 服务解决方案访问 SQL Server?

转载 作者:行者123 更新时间:2023-11-30 18:52:49 25 4
gpt4 key购买 nike

我有一些访问 SQL Server 2005 的现有 WCF 代码,但老实说,我开始不信任开发人员的方法,所以我想知道应该如何正确和专业地完成这项工作。我需要能够将 SQL 语句传递给返回结果数据集的方法(在 WCF 服务中,而不是从客户端)(到调用它的 WCF 中的方法,而不是客户端)。我对 Entity Framework 或其他抽象层不感兴趣。我需要运行 SQL、DML,希望还有 DDL。

我还想知道如何管理连接。

如果您愿意,请指出您对更好的替代方案的想法。我准备好倾听。

最佳答案

老实说,您不应该从 WCF 服务访问 SQL Server

您应该访问来自 WCF 服务的数据,而不知道后台有 SQL Server。

公开接受 SQL 语句的 Web 服务对我来说绝对是个糟糕的主意。出于很多原因(安全等),您不想将数据库暴露给服务的客户端。

您可以(应该)做的是编写一个返回您实际想要返回的数据的服务。例如:

[DataContract]
public class Customer
{
[DataMember]
public string Name { get; set; }
}

[ServiceContract]
public interface IService
{
Customer GetCustomer(int customerId);
}

[ServiceBehavior]
public class Service
{
[OperationContract]
public Customer GetCustomer(int customerId)
{
// Insert DB-related implementation of your query:
// - you could hard-code a SQL query
// - you could use Entity-Framework or other ORM
//
// First, create your connection to your database
// Then query
// Then close your connection
//
// Example with SQL connection
// Connection string comes from server configuration (app.config or whatever)
using (SqlConnection cn = new SqlConnection(connectionString))
{
Customer res = new Customer();

// query here

Customer.Name = XXX; // From DB result
}
}
}

在客户端:

ServiceClient proxy = new ServiceClient();
Customer myCustomer = proxy.GetCustomer(42);

您真的不应该考虑重用 SQL 连接。你的数据库的连接池会为你处理这个。创建/关闭与数据库的连接是一项轻量级操作。为每个网络服务调用创建一个新连接将避免很多麻烦(连接生命周期......等)。

尽可能使用无状态服务,它会为你节省很多时间(并发问题、对象生命周期管理...)。

关于c# - 我应该如何从 WCF 服务解决方案访问 SQL Server?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10247351/

25 4 0
文章推荐: c - 链表反转功能导致无限打印循环
文章推荐: c# - 从集合中删除/跳过项目的最佳方法是什么
文章推荐: c# - 除以 100 精度
文章推荐: c# - 将 List 转换为 List