假设您有下表:
LogID UserID Date Action
1 Bob 2013-05-23 13:30:27 1
2 Bill 2013-05-23 13:31:36 1
3 Bob 2013-05-23 13:32:45 2
4 Bill 2013-05-23 13:35:12 2
然后,您创建一个GridView
并使用Date
和Action
列填充它:
Date Action
2013-05-23 13:30:27 1
2013-05-23 13:31:36 1
2013-05-23 13:32:45 2
2013-05-23 13:35:12 2
您可以这样做(在GridView
中),而不是在1
下显示2
或Action
,它会显示Clock-In
或{{ 1}},分别?
提前致谢!
这是我的查询(标识符与问题无关)。我在哪里可以添加案例陈述?
Clock-Out
答案 0 :(得分:2)
您可以使用案例陈述
http://sqlfiddle.com/#!6/aa91e/3
这是SQL
SELECT LogID, UserId, Date,
CASE Action
WHEN 1 THEN 'Clock-In'
ELSE 'Clock-Out'
END
FROM MyTable
修改强>
使用LINQ to SQL,您将使用select as
var Entries = from entries in db.EmployeeTimeClocks
where entries.Date.Value.Day == DateTime.Now.Day &&
entries.UserId == AppCommon.Security.CurrentUser.UserId
orderby entries.ID descending
select new {
UserId = entries.UserId,
//Other fields
Clock = (entries.ClockId == 1 ? "Clock In" : "Clock Out")
};
答案 1 :(得分:1)
我不知道你想用这个做什么。但是如果你只有两个动作是1和2(In或Out),你应该叫你“Clocked-In”列,并将它设为Bit
类型。
您应该在SQL端执行此操作。
您可以使用以下方法创建另一个关系表(ForeignKey):
Actions
| ID | Name |
------------------
|1 | Clock-In |
|2 | Clock-Out |
您还可以使用返回正确名称的case语句更改查询。
我这里没有您的查询所以这只是一个例子:
SELECT CASE Action WHEN 1 THEN 'Clock-In' ELSE 'Clock-Out' END
在这种情况下,请确保只有两个可能的选项是1或2.
答案 2 :(得分:1)
您可以拥有模板列,然后像这样设置文本
<asp:TemplateField HeaderText="Action" >
<ItemTemplate><%# (Eval("Action")==1) ? "ClockIn" : "ClockOut" %></ItemTemplate>
</asp:TemplateField>
答案 3 :(得分:1)
如果你想使用代码,请尝试查看GridView RowDataBound事件
protected void GridView1_RowDatabound(object source, GridItemEventArgs e)
{
try
{
//Get Row Data
//if(value == 1/2)
//re-assign to DataGrid's Row
}
catch (Exception exception)
{
//HandleException
}
}