使用LiteDB,这太棒了。它适用于加载和存储数据,但不适用于创建数据库后的后续加载。
在初始加载时,一切都很完美。它创建数据库并完美地存储新记录,并且查询返回空,因为该集合中没有任何内容。
在后续加载时,查询数据(工作并获得结果)后,导致此问题的.Update()
出现问题。根据他们的文档,当没有指定'Id'时,它应该创建一个。从集合返回对象时,它不包含此“_Id”字段,因此无法更新数据库中的记录。
public class AuctionCache
{
public double lastModified { get; set; }
public string server { get; set; }
public AuctionCache() { }
}
private static bool IsCached(AuctionCache auction)
{
string filename = string.Format("{0}-{1}.json", auction.server, auction.lastModified);
bool cached = false;
try
{
using (LiteDatabase db = new LiteDatabase("cache.db"))
{
// Get customer collection
var auctions = db.GetCollection<AuctionCache>("auctions");
// Use Linq to query documents
try
{
var results = auctions.Find(x => x.server == auction.server).DefaultIfEmpty(null).Single();
if (results == null)
{
// Insert new cached server
auctions.Insert(auction);
auctions.EnsureIndex(x => x.server);
}
else
{
if (results.lastModified < auction.lastModified)
{
// Update existing cached server data
results.lastModified = auction.lastModified;
auctions.Update(results);
auctions.EnsureIndex(x => x.server);
}
else
{
cached = File.Exists(filename);
}
}
}
catch (LiteException le1) {
Log.Output(le1.Message);
// Get stack trace for the exception with source file information
var st = new StackTrace(le1, true);
// Get the top stack frame
var frame = st.GetFrame(0);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
var module = frame.GetMethod();
var file = frame.GetFileName();
}
catch (Exception e)
{
Log.Output(e.Message);
// Get stack trace for the exception with source file information
var st = new StackTrace(e, true);
// Get the top stack frame
var frame = st.GetFrame(0);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
}
}
} catch (Exception ee) {
Log.Output(ee.Message);
// Get stack trace for the exception with source file information
var st = new StackTrace(ee, true);
// Get the top stack frame
var frame = st.GetFrame(0);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
}
return cached;
}
如果您希望快速使用上述代码,可以使用以下内容进行演示(初始加载):
AuctionCache ac = new AuctionCache();
ac.lastModified = (double)12345679;
ac.server = "Foo";
// should return true on subsequent loads.
Console.WriteLine( IsCached( ac ) );
确保在初始创建后测试停止程序,然后使用以下代码启动程序“fresh”以进行加载/更新数据库的干净测试:
AuctionCache ac = new AuctionCache();
ac.lastModified = (double)22345679;
ac.server = "Foo";
// should return true on subsequent loads.
Console.WriteLine( IsCached( ac ) );
这应该确保它会尝试更新记录并在IDE中标记问题,因为lastModified
比cache.db
中存储的.Update
更新,这将触发IsCached
方法我的file-open "file.csv"
ask patches [
file-print (word pxcor ", " pycor ", " density)
]
file-close
方法。
答案 0 :(得分:11)
当你有一个没有标识的对象时,LiteDB会将你的对象转换为BsonDocument并创建一个新的&#34; _id&#34;在插入。如果您查询数据库(使用shell),您可以在那里看到带有_id(ObjectId)的文档。
但是,要更新文档,必须使用插入时生成的_id(请参阅此处:https://github.com/mbdavid/LiteDB/blob/v2.0.0-rc/LiteDB/Core/Collections/Update.cs#L25)。没有id的文档仅在将此_id存储在另一个数据库(sql)或仅用于插入时才有用。
在您的示例中,如果server
是您的文档ID,请使用[BsonId]
属性来解决或创建public Guid Id { get; set; }
答案 1 :(得分:1)
对于可能遇到此问题的其他人,这里有一个对我有用的示例。
我有一个带有字段 columnId 的产品类,我添加了另一个类型为 objectId
的 ID 以消除该 Invalid BSON data type 'Null' on field '_id'
错误。
public class Product
{
[BsonId]
public ObjectId Id { get; set; }
public int ColumnId { get; }
public int Quantity { get; private set; }
.....
}
我在另一个类中创建的更新方法是:
public void UpdateQuantity(Product product)
{
var collection = database.GetCollection<Product>("products");
var databaseProduct = collection.FindOne(x =>x.ColumnId.Equals(product.ColumnId));
databaseProduct.DecrementQuantity();
collection.Update(databaseProduct);
}
输入 Guid
对我不起作用。
答案 2 :(得分:0)
我同意@mbdavid的回答。但是,当它是您不拥有的类型时(例如您在第三方装配中使用的类型),则需要使用BsonMapper:
BsonMapper.Global.Entity<IdentityServer4.Models.IdentityResources.OpenId>()
.Id(oid => oid.Name);
将其放在您的启动代码中。