MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

MongoDb C# GeoNear क्वेरी निर्माण

इस और इसके माध्यम से उत्तर मिला:

var earthRadius = 6378.0; // km
var rangeInKm = 3000.0; // km

myCollection.EnsureIndex(IndexKeys.GeoSpatial("Location"));

var near =
    Query.GT("ExpiresOn", now);

var options = GeoNearOptions
    .SetMaxDistance(rangeInKm / earthRadius /* to radians */)
    .SetSpherical(true);

var results = myCollection.GeoNear(
    near,
    request.Longitude, // note the order
    request.Latitude,  // [lng, lat]
    200,
    options
);


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB में लेन-देन की कमी के आसपास कैसे काम करें?

  2. मोंगोडीबी:डीबी से कनेक्शन जांचें

  3. Mongodb में एम्बेडेड दस्तावेज़ गुण अद्यतन कर रहा है

  4. फ्लास्क उपयोगकर्ता प्रमाणीकरण

  5. java.lang.NoClassDefFoundError MongoDB ड्राइवर का उपयोग करते समय