使用 linq 填充表单视图 - vs2010 c#
我使用 Linq 构建了一个查询,并将其返回到网格视图。 这工作正常,但我想用相同的数据填充表单视图, 谁能给我指点一篇不错的操作方法文章吗?
谢谢
Using Linq I have built a query which I return to a gridview.
This works fine but I want to populate a formview with the same data,
can anyone point me to a decent how-to article please?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将查询结果分配给
DataSource
属性,然后尝试执行DataBind()
方法..它应该可以工作..如果不行,请向我们提供一些代码.. 。问候..
Try to assign your query result to a
DataSource
property, then try to executeDataBind()
method.. it should work.. if not, please provide us some code...Regards..