Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9154943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:30:39+00:00 2026-06-17T12:30:39+00:00

I have been doing experiments on MongoDB. Collection are as follows( sample ). Project

  • 0

I have been doing experiments on MongoDB. Collection are as follows(sample).
Project this, in this class of 95th DeleteAlbum line have the function of.

{
    "_id": {
        "$oid": "50e34afce4b0bc114fea2a7e"
    },
    "Ad": "Tarkan", //Artist
    "Albums": [
        {
            "_id": {
                "$oid": "50e34afce4b0bc114fea2a4e"
            },
            "Isim": "DUDU", //Name
            "Yil": 2005, //Year
            "Resim": "http://www.gercekpop.com/wp-content/uploads/2003/12/tarkan-dudu.jpg" //Image
        },
        {
            "_id": {
                "$oid": "50e34afce4b0bc114fea2a3e"
            },
            "Isim": "Kuzu Kuzu",
            "Yil": 2008,
            "Resim": "http://o.scdn.co/300/bf6423177c32224f25dc742f3ffe5450e441d68d"
        }
    ]
}

line 75th Add method in CreateAlbum function are working.

 Artist.Albums.Add(Album)
 Return Collection.Save(Artist, SafeMode.True).Ok

but Remove method in DeleteAlbum not work.

Artist.Albums.Remove(album)
Return Collection.Save(sanatci, SafeMode.True).Ok

What should be the method to delete the embedded document?
Thank you for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:30:39+00:00Added an answer on June 17, 2026 at 12:30 pm

    Here’s how you’d remove an element from the Albums array of the first document that contains it by its _id (in C#):

    var query = Query.EQ("Albums._id", new ObjectId("50e34afce4b0bc114fea2a4e"));
    var update = Update.Pull("Albums", new BsonDocument(){
        { "_id", new ObjectId("50e34afce4b0bc114fea2a4e") }
    });
    collection.Update(query, update);
    

    I’m not fluent in VB, but your DeleteAlbum method should change to something like:

    Public Function DeleteAlbum(Artist As Sanatci, album As Album) As Boolean
        Try
            Return Collection.Update(
                Query.EQ("Albums._id", album._id),
                Update.Pull("Albums", Query.EQ("_id", album._id)), SafeMode.True
            ).Ok
        Catch ex As MongoCommandException
            Dim msgLog As String = ex.Message
            Return False
        End Try
    End Function
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been doing some customization to this jQuery paging script I found here
I have been using cvx for doing some experiments with my SDPs. Although it
I have been doing with ml function and got some annoying things. I will
I have been doing some Google searches and only getting partial successful on this
I have been doing some experiments with three.js. However, when I try to do
I have been doing some research on test driven development and find it pretty
I have been doing active development in C# for several years now. I primarily
I have been doing TDD and was using it more as unit testing than
I have been doing PHP stuff for almost one year and I have never
I have been doing a lot of unit testing lately with mocking. The one

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.