繁体   English   中英

C#和MongoDB使用ObjectId列表删除记录

[英]C# and MongoDB Delete Records Using List Of ObjectId's

我需要使用官方C#驱动程序从mongo db中的集合中删除一些记录。 我的代码如下。

public static void Remove(List<ObjectId> objectIds)
{
        ObjectMongoCollection.Remove(Query.In("NotificationId", new BsonArray(objectIds)), SafeMode.True);
}

public class Notification
{
    public static MongoCollection<Notification> ObjectMongoCollection = MongoHelper.GetMongoServer("MongoKelimeYarisi").GetDatabase("KelimeYarisi").GetCollection<Notification>("Notification");

    [BsonId]
    public ObjectId NotificationId { get; set; }
    public int PlayerId { get; set; }
    public string OpponentName { get; set; }
    public string gameId { get; set; }
    public DateTime CreateDate { get; set; }
    public NotificationStatus Status = NotificationStatus.New;
    public NotificationType Type = NotificationType.RoundSubmit;
    public bool IsPushed { get; set; }

它运行没有错误,但似乎不起作用。 如何使用ObjectIds列表删除记录。

还尝试过:

ObjectMongoCollection.Remove(Query.In("_id", new BsonArray(objectIds)), SafeMode.True);

我使用不同的方法来获取mongo查询并且有效。 我构建了一个linq查询并将其转换为mongo查询。

    public static void Remove(List<ObjectId> objectIds)
    {
        var linqQuery = from n in ObjectMongoCollection.AsQueryable<Notification>() where n.NotificationId.In(objectIds) select n;
        var mongoQuery = ((MongoQueryable<Notification>)linqQuery).GetMongoQuery();       
        ObjectMongoCollection.Remove(mongoQuery);
    }

我无法重现这一点。 我编写了一个尽可能与您的代码类似的测试程序,它确实删除了多个记录。 这是我的测试程序:

http://pastie.org/4618039

如果您有任何其他问题,请与我们联系。

您可以编写一个名为的方法:

public void destroy() {
        ...
    }

在此方法中,您将使用ObjectIds列表并循环遍历它们。

foreach(Enitity enitity in entities) {
    ...
}

您可以使用MongoDB.Driver.Linq在列表中执行特定查询:

var query = Query<Entity>.EQ(e => e.Attribute, entity.Value);
db.GetCollection<Entity>("Entity").Remove(query);

其中Value是您想要的对象的值。 这将从包含特定值的db中删除元素。

希望这个对你有帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM