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

MongoDB C++, Come aggiungere il valore ISODate durante l'inserimento

Grazie Styvane, ho scoperto come!

value Value = document{}
<<"Key" <<"Value"
<<"Date" <<bsoncxx::types::b_date(std::chrono::system_clock::now())
<<finalize;

cxxClient["db"]["collection"].insert_one(Value.view());