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

MongoDB:come caricare la raccolta con l'array nidificato in C#?

Se vuoi tutti gli articoli puoi usare il seguente codice:

var server = MongoServer.Create("mongodb://localhost:27020");
var database = server.GetDatabase("someDb");

var servers = database.GetCollection<ServerItem>("servers");
servers.FindAllAs<ServerItem>();

Ma se vuoi ad esempio tutti i documenti con nome =west, allora puoi:

collection.FindAs<ServerItem>(Query.EQ("name","west"));

ServerItem:

 public class ServerItem
 {
   public string name { get; set; }

   public string ip { get; set; }

   public List<Channel> channels { get; set; }
 } 

 public class Channel
 {
   public string name { get; set; }

   public int port { get; set; }

   public int status { get; set; }
 }