Subsonic 3:从不同表返回混合结果的存储过程的强类型返回值

发布于 2024-11-14 04:20:31 字数 531 浏览 0 评论 0原文

假设我有一个存储过程,它从两个不同的表返回数据集。示例:

SELECT Customers.FirstName, Customers.LastName, SUM(Sales.SaleAmount) AS SalesPerCustomer
FROM Customers LEFT JOIN Sales
ON Customers.CustomerID = Sales.CustomerID
GROUP BY Customers.FirstName, Customers.LastName 

有没有办法从该存储过程中获取强类型列表?像这样的事情:

StoredProcedure sp = myDevDB.GetCustomerSales();

List<MyCustomType> resultSet = sp.ExecuteTypedList<MyCustomType>();

如何以及在哪里定义 MyCustomType 类?如何将其属性映射到实际的表列?

谢谢,梅胡尔

Say I have a stored procedure that returns dataSet from 2 different tables. Example:

SELECT Customers.FirstName, Customers.LastName, SUM(Sales.SaleAmount) AS SalesPerCustomer
FROM Customers LEFT JOIN Sales
ON Customers.CustomerID = Sales.CustomerID
GROUP BY Customers.FirstName, Customers.LastName 

Is there any way to get a strongly typed list as a result from this stored procedure ? Something like this:

StoredProcedure sp = myDevDB.GetCustomerSales();

List<MyCustomType> resultSet = sp.ExecuteTypedList<MyCustomType>();

How and where do I define the MyCustomType class ? How do I map its properties to the actual table columns ?

thanks,mehul

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福丶如此 2024-11-21 04:20:31

我通过创建一个类来解决这个问题(与所有其他类在同一位置,但我没有扩展 IActiveRecord,它只是一个普通类)。

确保属性名称与过程中的名称和数据类型完全相同,然后调用 db.sproc(params).ExecuteTypedList().AsQueryable();而且人口很好。

I solved it by creating a class (in the same place as all my other classes, but I didn't extend IActiveRecord, it's just a vanilla class).

Make sure the property names have exactly the same name and data type as the ones in the procedure, then call db.sproc(params).ExecuteTypedList().AsQueryable(); and it populated fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文