我有一张Meters表。然后是一个Meter Readings表(其中包含对Meter表的引用,以及Date的列和读取值的列)。这个想法是,每天都会记录给定仪表的读数。用户界面工作正常,我可以选择一个仪表,然后单击按钮添加一个新的阅读,并在阅读网格中添加一个空白的“阅读”行。读数的输入日期默认为今天。
我想要做的是将阅读日期默认为特定仪表的最后阅读日期,+ 1天。我设想的是,在Reading_Created处理程序中,我有这样的伪代码:
var lastDate = DataWorkspace.Data.Readings
.Where(r=> r.MeterID == this.MeterID)
.Max(r=> r.ReadingDate);
this.ReadingDate = lastDate.AddDays(1);
这是否可以在Lightswitch应用程序中使用?
答案 0 :(得分:1)
如果您要使用 this.ReadingCollection.AddNew(); 添加新的阅读,那么新添加的阅读将拥有其父级 Meter 已经正确设置。
看到 Meter &它的读数,您可以通过将代码修改为以下所示来利用它:
partial void Reading_Created()
{
//get parent meter's existing Readings
var previousReadings = (from r in this.Meter.Readings select r)
//if previous readings exist for this meter, get the last date, & add a day to it
if (previousReadings.Any())
{
this.ReadingDate = previousReadings.Max(d => d.ReadingDate).AddDays(1);
}
//otherwise, just use today's date
else
{
this.ReadingDate = Date.Today();
}
}
这样做,你不需要过滤Readings表的记录(这种关系适合你),你不需要对它们进行排序,&你不需要 TakeOne (如果没有记录就会失败)。
答案 1 :(得分:0)
您可以将此代码添加到实体的Created()事件中:
partial void Readings_Created()
{
ReadingDate = (from o in this.DataWorkspace.Data.Readings
where MeterID == this.MeterID
orderby o.ReadingDate descending
select o).Take(1).Execute().Max(o => o.ReadingDate).AddDays(1);
}
我测试了一组类似的代码,并计算了新行的正确日期。如果没有MeterID的条目,我没有测试这是否可行。
答案 2 :(得分:0)
I know this post is older but for anyone researching the method, thanks to Beth Massi vid HDI#20 I came up with this for a similar screen.
/ 单击绿色+按钮时会触发此方法,查看集合中的所选项目,并将所选项目中的信息复制到要添加的新项目中。 /
partial void Worklists_Changed(NotifyCollectionChangedEventArgs e)
{
if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Add)
{
if (this.Worklists.Count > 1 & e.NewItems.Count == 1)
{
try
{
Worklist newRecord = (Worklist)e.NewItems[0];
Worklist currentRecord = this.Worklists.SelectedItem;
newRecord.StartTime = currentRecord.StartTime.Value.AddDays(1);
newRecord.EndTime = currentRecord.EndTime.Value.AddDays(1);
newRecord.WorklistCode = currentRecord.WorklistCode;
}
catch (Exception ex)
{
Trace.TraceInformation("Could not copy data into new row " + ex.ToString());
}
}
}
}