无法转换为不支持的类型'DateTimeOffset'DataServiceContext

时间:2018-06-25 08:15:08

标签: c# sql-server odata dataservice

我正在尝试使用here所示的DataServiceContext更新远程表

在其他表上,此方法对我来说效果很好,但现在我收到此错误:

  

不能转换为不受支持的类型'DateTimeOffset'

这是我的代码:

decimal hungerPercent = selectedWeight / (selectedDailyPercent * selectedPortionHeads * _batchWeight); //some calculation

var DeliveryGroup = _container.DeliveryGroups
                           .Where(x => x.GroupCode == selectedGroupCode && x.Branch == branch).First();

DeliveryGroup.HungerPercent = hungerPercent;                       

_container.UpdateObject(DeliveryGroup);
_container.SaveChanges();

,表结构如下所示 enter image description here

0 个答案:

没有答案