1

少し問題があります。データベースで float 値を受け取る必要がある RadTextBox があります。日付タイプも float であるため、RadTextBox をバインドする場合、常にこの奇妙なエラーが発生します。

エラー 4 タイプ「double」を「Telerik.Web.UI.RadTextBox」に暗黙的に変換できません

解析する必要がありますか?

私のコード

private void bindData()
{
    this.cbActive.Checked = this.paramBR.GetActive();
    this.rtbCode.Text = this.paramBR.Code;
    this.rtbDescription.Text = this.paramBR.Description;
    this.rtbHourlyRate = this.paramBR.HourlyRate;
}

BillingRate br = ctx.BillingRate.Where(yx => yx.BillingRateId == this.paramBR.BillingRateId).FirstOrDefault();
if (br == null)
{
    br = new BillingRate();
    newEntity = true;
}
br.Code = this.rtbCode.Text;
br.Description = this.rtbDescription.Text;
br.SetActive(this.cbActive.Checked);
br.HourlyRate = this.rtbHourlyRate.Text;
br.CreatedDate = DateTime.Now;
br.CreatedBy = this.User.UserId;
4

4 に答える 4