본문 바로가기

Delphi/꿀팁

[mORMot] MongoDB의 Aggregate 사용하기

var

  Coll: TMongoCollection;

  sTemp: string;

begin

  Coll := DB.CollectionOrCreate['Collection'];

  sTemp := '{$match:{..}, $group:{..}, $..}';


  Showmessage(Coll.AggregateJSONFromJson(sTemp));

end;


반응형