We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug InsertOne returns ObjectID("000000000000000000000000") in _id instead of actual id
How To Reproduce
type User struct { ID primitive.ObjectID `json:"id" bson:"_id,omitempty"` Name string `json:"name" bson:"name"` } model := types.User{} opts := schemaopt.SchemaOptions{Collection: "users"} userModel, err := mgod.NewEntityMongoModel(model, opts) user := User{Name: "abc"} user = userModel.InsertOne(context.Background(), user) fmt.Println(user.ID)
Expected behavior should return actual objectId of created doc
Environment (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
InsertOne returns ObjectID("000000000000000000000000") in _id instead of actual id
How To Reproduce
Expected behavior
should return actual objectId of created doc
Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: