4

我目前正在使用计划程序控件从我的应用程序中的 SQL 数据库保存和恢复计划的约会数据。调度程序控件本身配置为使用几个自定义字段,如下所示:

private DevExpress.XtraScheduler.SchedulerControl _SchedulerControl;
private DevExpress.XtraScheduler.SchedulerControl StandingSchedulerControl
{
    get
    {
        if (_SchedulerControl == null)
        {
            _SchedulerControl = new DevExpress.XtraScheduler.SchedulerControl();

            BindingSource bs = new BindingSource();
            bs.DataSource = StandingOrderList;

            _SchedulerControl.Storage = new SchedulerStorage(this.components);
            _SchedulerControl.Storage.Appointments.AutoReload = true;
            _SchedulerControl.Storage.Appointments.Mappings.Subject = "Description";
            _SchedulerControl.Storage.Appointments.Mappings.RecurrenceInfo = "RecurrenceInfo";
            _SchedulerControl.Storage.Appointments.Mappings.Type = "Type";

            _SchedulerControl.Storage.Appointments.CustomFieldMappings.Add(new DevExpress.XtraScheduler.AppointmentCustomFieldMapping("Inactive", "Inactive"));
            _SchedulerControl.Storage.Appointments.CustomFieldMappings.Add(new DevExpress.XtraScheduler.AppointmentCustomFieldMapping("StandingOrderKEY", "StandingOrderKEY"));
            _SchedulerControl.Storage.Appointments.DataSource = bs;
            _SchedulerControl.EditRecurrentAppointmentFormShowing += new EditRecurrentAppointmentFormEventHandler(_SchedulerControl_EditRecurrentAppointmentFormShowing);
        }
        return _SchedulerControl;
    }
}

其中“StandingOrderList”被定义为 StandingOrder 业务对象的列表。这样可以正确保存和恢复,但是在应用程序中可能只有一个“StandingOrderKEY”值,并且需要从该值获取存储中的 Appointment 对象。到目前为止,我的解决方案是这样的:

private Appointment GetAppointmentByStandingOrderKEY(Guid standingOrderKEY)
{
    Appointment findAppointment = StandingSchedulerControl.Storage.Appointments.Items.Find(appointment => (Guid)appointment.CustomFields["StandingOrderKEY"] == standingOrderKEY);
    return findAppointment;
}

但是,StandingSchedulerControl.Storage.Appointments.Items 似乎只包含具有 Normal 或 Pattern 类型的约会,这意味着如果 StandingOrderKEY 与保存的 ChangedOccurrence 或 DeletedOccurrence 相关联,则将找不到相关的约会。

我已经验证了从列表中创建的 BindingSource 实际上包含所有约会的例外情况。似乎当它被设置为 AppointmentStorage 的 DataSource 时,异常被安置在他们的 Pattern 约会中,并且只能通过首先获取对父约会的引用然后在该约会上调用 GetExceptions() 并搜索为 StandingOrderKEY 生成的集合。然而,这是一个问题,因为目前我们没有“父母”约会的识别信息,只有一个例外。

因此,我的问题如下(大致按优先顺序排列):

  • 有没有办法通过自定义字段值从约会存储中获取约会对象,而忽略约会的类型?是否有一个包含异常和正常/模式约会的集合?
  • 我们知道约会将是一个例外,因为约会的类型已经被存储了。有没有办法搜索此特定自定义字段值的所有异常?
  • 有没有办法通过数据源引用从 Appointment 存储中获取 Appointment 对象?用作 DataSource 的 BindingSource 包含异常约会。给定 BindingSource 集合中的项目,有没有办法将其与 Storage 中的项目相关联?

欢迎任何其他建议。感谢您的关注!

4

2 回答 2

1

您可以尝试通过该方法获取所有约会GetAppointments(),看看是否有所不同:

Appointment findAppointment = StandingSchedulerControl.Storage
    .GetAppointments(startDate, endDate)
    .FirstOrDefault(a => (Guid)a.CustomFields["standingOrderKEY"] == 
                         standingOrderKEY);

我希望以这种方式获得您的约会将包括包括您正在搜索的项目的其他事件。

我不知道仅通过异常进行搜索的方法。

您的第三个问题是,鉴于 BindingSource 中的项目,您可以从 AppointmentStorage 中获取 Appointment 吗?这与第一个问题本质上是相同的问题:鉴于您的 BindingSource 项中包含的数据,您仍然必须搜索调度程序控件存储中的约会。

于 2012-06-15T17:10:27.237 回答
0

The eventual solution that I came to was maintaining my own mapping of standing order objects to appointments, as seen in this DevExpress solution here: http://www.devexpress.com/Support/Center/p/E3143.aspx

This allowed me to obtain the appointment object from the source object, as in question 3 above.

于 2012-06-22T14:16:07.053 回答