我有以下基于网站示例编写的 LiteDB 查询代码:
private void QueryFunc()
{
using (var db = new LiteDatabase(@"C:\NewTemp\MyData.db"))
{
var EmployeeCollection = db.GetCollection<Employee>("employeesName");
var Finder = EmployeeCollection.Find(x => x.Name_Last.StartsWith("L")).ToList();
label_LastName.Text = Finder.ToString();
}
}
它运行正常,但是它返回的不是姓氏字符串,而是对象名称 (System.Collection.Generic.List'[LITEDB.Form1+Employee])。如何让“查找”命令显示字符串?此外,是否有地方显示其余“查找”命令(FindOne、FindAll、FindbyId)以字符串格式显示查询结果所需的过程?