gpt4 book ai didi

mongodb - 如何使用 10gen c# 驱动程序更新内部属性?

转载 作者:可可西里 更新时间:2023-11-01 10:34:46 24 4
gpt4 key购买 nike

我有这样的结构:

public class User
{
public ObjectId Id { get; set; }
public Location Location { get; set; }
public DateTime LastAround {get;set;}
}

public class Location
{
public double Latitude { get; set; }
public double Longitude { get; set; }
}

我已经尝试了一些方法,但我想更新用户的位置以及他们上次出现的时间。

试过这个:

userHelper.Collection.Update(
Query.EQ("_id", userId),
Update.SetWrapped<Location>("Location", new Location { Latitude = latitude, Longitude = longitude }).Set("LastAround", DateTime.UtcNow));

还有这个:

userHelper.Collection.Update(
Query.EQ("_id", userId),
Update.Set("Location.Latitude", latitude)
.Set("Location.Longitude", longitude)
.Set("LastAround", DateTime.UtcNow));

没有任何效果...我该怎么做?

4/17 更新:

userHelper.Collection.Update(
Query.EQ("_id", new ObjectId(userId)),
Update
.SetWrapped<Location>("Location", new Location { Longitude = longitude, Latitude = latitude })
.Set("LastAround", DateTime.UtcNow)
);

在对它们进行查询时,lng 和 lat 值顺序似乎非常重要。我正在做一个 geonear 查询并得到一个奇怪的越界错误。如果您以错误的顺序更新,它会将 lats 放在第一位,然后您会收到错误消息。

最佳答案

您的两个原始更新语句都应该有效。我写了一个小示例程序来演示。

执行此 Insert 语句后:

var userId = ObjectId.GenerateNewId();
var user = new User
{
Id = userId,
Location = new Location { Latitude = 1.0, Longitude = 2.0 },
LastAround = new DateTime(2012, 4, 14, 0, 0, 0, DateTimeKind.Utc)
};
collection.Insert(user);

文档在 mongo shell 中看起来像这样:

> db.test.find()
{ "_id" : ObjectId("4f8c5d33e447ad34b8c7ac84"), "Location" : { "Latitude" : 1, "Longitude" : 2 }, "LastAround" : ISODate("2012-04-14T00:00:00Z") }
>

执行第一种形式的 Update 语句后:

collection.Update(
Query.EQ("_id", userId),
Update
.SetWrapped<Location>("Location", new Location { Latitude = 3.0, Longitude = 4.0 })
.Set("LastAround", new DateTime(2012, 4, 15, 0, 0, 0, DateTimeKind.Utc)));

文档看起来像这样:

> db.test.find()
{ "_id" : ObjectId("4f8c5d33e447ad34b8c7ac84"), "Location" : { "Latitude" : 3, "Longitude" : 4 }, "LastAround" : ISODate("2012-04-15T00:00:00Z") }
>

并且在执行了第二种形式的 Update 语句之后:

collection.Update(
Query.EQ("_id", userId),
Update
.Set("Location.Latitude", 5.0)
.Set("Location.Longitude", 6.0)
.Set("LastAround", new DateTime(2012, 4, 16, 0, 0, 0, DateTimeKind.Utc)));

文档看起来像这样:

> db.test.find()
{ "_id" : ObjectId("4f8c5d33e447ad34b8c7ac84"), "Location" : { "Latitude" : 5, "Longitude" : 6 }, "LastAround" : ISODate("2012-04-16T00:00:00Z") }
>

所以更新语句的两种形式都有效。

完整程序在这里:

http://www.pastie.org/3799469

关于mongodb - 如何使用 10gen c# 驱动程序更新内部属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10158764/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com