如果我在MySQL中使用常规的不同选择器并在转发器中显示结果,我可以使用以下代码在webform中显示数据。
<%# DataBinder.Eval(Container.DataItem, "posted") %>
但如果我使用此代码:
"SELECT DISTINCT mid(posted,6,1) ORDER BY posted DESC"
尝试使用上面的代码时出现以下错误。
DataBinding: 'System.Data.Common.DataRecordInternal' does not contain a
property with the name 'posted'.
那么如何通过“DISTINCT mid”选择器获取我收集的数据以显示在webform中?
答案 0 :(得分:1)
执行此操作,using an alias:
SELECT DISTINCT mid(posted,6,1) as posted
FROM Something?
ORDER BY posted DESC