Brian Foster
Results
3
issues of
Brian Foster
Lets say I have an Instance subclass called Car: ``` interface CarDocument { _id?: string; // ... make: string; } class Car extends Instance implements CarDocument { @ObjectID _id: string;...
While in most cases, manual referencing is a better alternative to using DBRef (https://docs.mongodb.com/manual/reference/database-references/#dbref-explanation), there are many use cases where it is preferred. The Node.js driver does support DBRef (http://mongodb.github.io/node-mongodb-native/api-bson-generated/db_ref.html)...