I can query and get nearest locations to the client with degrees:
serviceQuery = serviceQuery.Where(s => s.Location.Distance(currentLocation) < <degree>)
.OrderBy(s => s.Location.Distance(currentLocation));
Location is NetTopologySuite.Geometries.Point
type in C# and geography
in SQL Server.
How can I provide meter instead of degree in query and also get meter distance instead of degree? Converting the result degree to meter on client-side is acceptable.