私はffコードを持っています:
// note: entries is a list binded to a query from the database
// wherein i'm passing some parameters to satisfy
// the conditions from the query
foreach (var entry in entries)
{
Appointment appointment = new Appointment();
appointment.Start = entry.StartDateTime;
appointment.End = entry.EndDateTime;
appointment.Summary = entry.Summary;
this.radScheduler.Appointments.Add(appointment);
}
ステートメントradScheduler
を使用せずにエントリを直接バインドする方法はありますか?foreach
私も使ってみましradScheduler.datasource
たがダメでした。