私の場所から特定のマイル範囲に入る緯度経度を持つすべてのデータベースエントリを見つけようとしています。
私はこのstackoverflowの回答に基づいて回答しています:
ここに私が持っているものがあります:
IQueryable<myTable> busLst = (from b in db.myTable
where (3959 * Math.Acos(Math.Cos(radians(latLonRequest.lat)) * Math.Cos(radians(b.lat))
* Math.Cos(radians(b.lon) - radians(latLonRequest.lon)) + Math.Sin(radians(latLonRequest.lat)) *
Math.Sin(radians(b.lat)))) < latLonRequest.MaxDistance
select b
);
次のエラーが表示されます。
"errorCode": "NotSupportedException",
"message": "LINQ to Entities does not recognize the method 'Double Acos(Double)' method, and this method cannot be translated into a store expression.",
"stackTrace": "[GetByLatLonRequest: 6/24/2013 6:57:14 PM]:\n[REQUEST: {lat:3,lon:3,maxDistance:10,measureSystem:N}]\nSystem.NotSupportedException: LINQ to Entities does not recognize the method 'Double Acos(Double)' method, and this method cannot be translated into a store expression.\r\n at System.Data.Objects.ELinq.ExpressionConverter.MethodCallTranslator.DefaultTranslator.Translate(ExpressionConverter parent,