如何从DataLayer返回值列表。

编程入门 行业动态 更新时间:2024-10-28 02:24:18
本文介绍了如何从DataLayer返回值列表。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

这是我的业务层,此代码只返回一个值, 如何从DataLayer返回值列表。

This is my Business layer ,this code returns only a single value, How to return a list of value from DataLayer.

public class GetLocal { public BusinessObj.Tables.GetLocal GetItem(int TransId) { DataLayer.PL.GetLocal objGetLocalDL = new DataLayer.PL.GetLocal(); try { return objGetLocalDL.GetItem(TransId); } catch (Exception ex) { throw new Exception(ex.Message, ex.InnerException); } } }

推荐答案

你会改变 You would change public BusinessObj.Tables.GetLocal GetItem(int TransId)

to

to

public List<businessobj.tables.getlocal> GetItem(int TransId) </businessobj.tables.getlocal>

然后在您的代码中,您需要实例化一个新的List<>您的对象,向其添加项目,然后将其返回。

and then in your code you need to instantiate a new List<> of your object, add items to it, and then return it.

更多推荐

如何从DataLayer返回值列表。

本文发布于:2023-05-31 10:02:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/389506.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:返回值   列表   DataLayer

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!