I have a mongo collection that look like that:
{
"_id": {
"$oid": "50e9f38fbd7680c8090bcb4"
},
"guid": "D3G5wQ8RZL",
"lat": 37.503287248864,
"lng": -121.97620341421,
} I want to preform "NEAR" query using C# linq
it need to look something like that
query = query.Where(x => LinqToMongo.Inject(Query.Near("Location", -96.770401, 32.816774, 20)));
MY question is - What should I code insted of "Location"? how can I check the Points from the collection above?
Thanks.