You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varedList=fsql.Select<EquipmentData>().AsTable((t,n)=>edTable).Where(a =>a.DataTime.Between(startTime,startTime.AddDays(1)).IncludeMany(a =>a.Datas, then =>then.AsTable((t,n)=>$"ParameterData_{gateway.Id}_{startTime.ToString("yyMM")).ToList();
如上述代码,IncludeMany 内的子查询 then AsTable 没有生效。翻看源码发现是使用错了。
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
如上述代码,IncludeMany 内的子查询 then AsTable 没有生效。翻看源码发现是使用错了。
正确代码如下:(AsTable 由上级查询统一设置
Beta Was this translation helpful? Give feedback.
All reactions