sql >> Database teknologi >  >> NoSQL >> MongoDB

hvordan man kontrollerer, om et felt findes i et specifikt dokument Mongodb ved hjælp af C#?

Du kan prøve følgende:

  1. Brug Try/Catch som følger:

    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. Brug .Contains(), som følger:

    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. Og ved at bruge TryGetElement kan du desuden få dette 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
    

Håber det hjalp




  1. Eksporter JSON-data og indlæs i en relationel database

  2. Kan jeg ansøge om hver samlet forespørgsel i MongoDB?

  3. MongoDb og morphia adgangskode og brugernavn

  4. Saml MongoDB-resultater efter ObjectId-dato