LINQ:LinqDataSource 如何在代码隐藏中进行列选择?
<asp:LinqDataSource
ContextTypeName="ExampleDataContext"
TableName="Products"
Select="new(Key as ProductCategory,
Average(Price) as AvePrice)"
ID="LinqDataSource1"
runat="server">
</asp:LinqDataSource>
不知何故,我的 Select in .aspx 文件(如上所示)无法正常工作:所有列都在查询结果中返回。所以我会尝试在代码后面做到这一点。
如何在 LinqDataSource1_Selecting () 中执行 2 个字段的选择? 谢谢。
<asp:LinqDataSource
ContextTypeName="ExampleDataContext"
TableName="Products"
Select="new(Key as ProductCategory,
Average(Price) as AvePrice)"
ID="LinqDataSource1"
runat="server">
</asp:LinqDataSource>
Somehow my Select in .aspx file (as seen above) is not working: all columns are returned in the query result. So I will try to do that in code behind.
How do I perform the selection of the 2 fields in my LinqDataSource1_Selecting ()?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
例如:
//注意:条件是样本
OR
for example:
//notice: condition is sample
OR
您忘记了
GroupBy="ProductCategory"
。You forgot the
GroupBy="ProductCategory"
.