MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

jak sprawdzić, czy pole istnieje w określonym dokumencie Mongodb za pomocą C#?

Możesz spróbować:

  1. Użyj Try/Catch w następujący sposób:

    var document = Bundle.Collection().Find(filter); // here is your BsonDocument
    try
       {
          document["fieldNameToCheck"] // if field doesn`t exist it throws KeyNotFoundException. If there are nested objects just follow the pattern: document["fieldName"]["fieldNestedToCheck"]
       }
    catch (Exception ex) when (ex is KeyNotFoundException)
       {
          // your logic for "the field wasn`t found in the document" case
       } 
    
  2. Użyj .Contains() w następujący sposób:

    var exists = document.Contains("fieldNameToCheck");// if field exists it returns true
    // If you need to check the nested fields, you can do as follows:
    var nestedExists = document["fieldName"].ToBsonDocument().Contains("fieldNameToCheck"); // or:
    var nestedExists = document["fieldName"]["nestedFieldNameNextLevel"].ToBsonDocument().Contains("fieldNameToCheck");  // and so on...      
    
  3. A używając TryGetElement możesz dodatkowo uzyskać ten element:

    BsonElement element; // it will contain found element if true for next line
    var exists =  document.TryGetElement("fieldNameToCheck", out element); // returns true if element is found
    

Mam nadzieję, że to pomogło




  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Znajdź dokumenty zawierające element w polu Array z mongomapperem?

  2. Agregacja Mongoose nie filtruje według daty wprowadzenia

  3. Mongo aktualizacja poddokumentów

  4. Mongoose:populate() / DBref czy powielanie danych?

  5. Zapisywanie obiektu Mongoose w dwóch kolekcjach