在ef core 2.2中执行'select * from(select * from ...)'查询

时间:2019-02-28 20:22:28

标签: c# postgresql subquery postgis ef-core-2.2

我正在尝试使用实体框架核心2.2在c#中使用与此(SQL)的子查询执行类似的查询

this.submit()

在实体框架> 2.0中,我尝试执行左联接,但是使用自定义功能时,遇到了EF核心警告或错误。有没有执行该查询的适当方法?

2 个答案:

答案 0 :(得分:0)

这样的作品会吗?

select ST_LengthSpheroid(ST_MakeLine(TrackerLogs.Location),'SPHEROID["WGS 84",6378137,298.257223563]') AS Length
from TrackerLogs
where CarId = 191
order by Id

答案 1 :(得分:0)

好的,也许有人知道更好的解决方案,但是经过一些研究,我无法使用 pure ef内核实现这一点,所以我使用了FromSql

var queryable = qLogs.FromSql("select * from \"" + tableName + "\" order by \"" + orderField + "\"");

var result = qCars.Select(x => new RouteModel
{
   Mileage = Math.Round(
       queryable
           .Where(y => y.CarId == x.Id)
           .Select(y => PostgisExtensions.ST_LengthSpheroid(
                    PostgisExtensions.ST_MakeLine(
                        PostgisExtensions.ST_GeomFromText(y.Location.AsText(),          PostgisConstants.MetricSrid)
                    ),
                   PostgisConstants.SpheroidWgs84)
           )
           .FirstOrDefault() / 1000),
 .....

所以现在我可以orderby使用不带groupbydistinct on的子选择了。 完美运行,没有任何ef核心警告,并生成预期的查询:

  SELECT ROUND(COALESCE((
      SELECT ST_LengthSpheroid(ST_MakeLine(ST_GeomFromText(ST_AsText(x0."Location"), 4326)), 'SPHEROID["WGS 84",6378137,298.257223563]')
      FROM (
          select * from "Logs" order by "FixedAt"
      ) AS x0
      WHERE (x0."CarId" = x."Id")
      LIMIT 1
  ), 0.0) / 1000.0) AS "Mileage", 
  .....