我通过LiteDb.Shell.exe插入了一条记录,当我尝试在我的代码中检索记录时,它会抛出一个InvalidCastException
。如果我尝试通过shell找到记录,我会得到Unable to cast object of type 'System.Int32' to type 'System.String'.
这是我的模特
public class Query
{
public int Id { get; set; }
public string FilePath { get; set; }
public string Hash { get; set; }
public string[] Arguments { get; set; }
public int[] PrintoutIds { get; set; }
}
这是我用来插入记录的shell命令
db.queries.insert {FilePath: "C:/Temp/Reporting Test.sql", Hash: "8074458BDE071C6B05A6EE1C718EC29CC92C89A2967D6E314EADEB0BA60F270E", Arguments: ["Tenant_ID"], PrintoutIds: [1]}
这是我用来尝试获取记录的shell命令
> db.queries.find
[1]: {"_id":{"$oid":"5a0ef5219996a32e14886d6b"},"FilePath":"C:/Temp/Reporting Test.sql","Hash":"8074458BDE071C6B05A6EE1C718EC29CC92C89A2967D6E314EADEB0BA60F270E","Arguments":["Tenant_ID"],"PrintoutIds":[1]}
> db.queries.find PrintoutIds contains 1
Unable to cast object of type 'System.Int32' to type 'System.String'.
> db.queries.find PrintoutIds contains "1"
> db.queries.find $.PrintoutIds[*] contains 1
Unable to cast object of type 'System.Int32' to type 'System.String'.
> db.queries.find $.PrintoutIds[*] contains "1"
这是我用来检索记录的代码
public IEnumerable<dynamic> DoStuffWithAQuery(int id)
{
using (var reportDatabase = new LiteDatabase("C:/Stuff/Database/Reporting/Reports.db"))
{
var queryCollection = reportDatabase.GetCollection<Query>("queries");
queryCollection.EnsureIndex(x => x.PrintoutIds, "$.PrintoutIds[*]");
Query query;
try
{
// The next line throws an InvalidCastException.
query = queryCollection.Find(x => x.PrintoutIds.Contains(id)).Single();
}
catch (InvalidOperationException)
{
throw new WebFaultException<string>("Only one query can be mapped to a printout",
HttpStatusCode.BadRequest);
}
return DoSomeStuff(query);
}
}
这里是我得到的完整堆栈跟踪
The server encountered an error processing the request. The exception message is 'Specified cast is not valid.'. See server logs for more details. The exception stack trace is:
at
lambda_method(Closure , Object , Object ) at
LiteDB.BsonMapper.DeserializeObject(Type type, Object obj, BsonDocument value) at
LiteDB.BsonMapper.Deserialize(Type type, BsonValue value) at
LiteDB.BsonMapper.ToObject(Type type, BsonDocument doc) at
LiteDB.BsonMapper.ToObject[T](BsonDocument doc) at
LiteDB.LiteCollection`1.<Find>d__17.MoveNext() at
System.Linq.Enumerable.Single[TSource](IEnumerable`1 source) at
ReportService.DoStuffWithAQuery(String tenantName, Int32 id, Object parameters) in C:\C# Workspace\MyProject\ReportService.cs:line 35 at
SyncInvokeDoStuffWithAQuery(Object , Object[] , Object[] ) at
System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs) at
System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage41(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage3(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage2(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage11(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage1(MessageRpc& rpc) at
System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)
答案 0 :(得分:1)
这里有2个想法
首先,如果您的强类使用_id作为整数,则不能将shell与ObjectId(deafault)一起使用。尝试:
db.queries.insert { ... } id:int
现在,您的文档将插入自动ID为Int32
(_id: 1
)。这将避免您的映射器错误:
query = queryCollection.Find(x => x.PrintoutIds.Contains(id)).Single();
其次,关于&#34;包含&#34;关键词。在shell中,&#34;包含&#34;作为String.Contains
。 Shell使用Query.Contains(string field, string text)
。因此,您无法将Int作为&#34;文本&#34;。
您的查询在shell中必须使用=
db.queries.find $ .PrintoutIds [*] = 1
使用$ .PrintoutIds [*]
的db.queries.ensureIndex PrintoutIds
db.queries.find PrintoutIds = 1
但.....当你写Linq表达时,Contains
可以来自String
或来自IEnumerable
。如果来自String
,则视为正常Query.Contains
,但如果来自IEnumerable
,则使用Query.EQ
。
// QueryVisitor.cs : 152
// Contains (String): x.Name.Contains("auricio")
else if (method == "Contains" && type == typeof(string))
{
var value = this.VisitValue(met.Arguments[0], null);
return Query.Contains(this.GetField(met.Object, prefix), value);
}
// Contains (Enumerable): x.ListNumber.Contains(2)
else if (method == "Contains" && type == typeof(Enumerable))
{
var field = this.GetField(met.Arguments[0], prefix);
var value = this.VisitValue(met.Arguments[1], null);
return Query.EQ(field, value);
}
答案 1 :(得分:0)
将您的类查询中的ID更改为Query_Id,即可使用
StartProcess("cmd.exe", new ProcessSettings{ Arguments = "/c appcenter distribute release --token ********* -f AppPackages.app.zip -g All-users-TestApp -R ../releasenotes.txt --app User/TestApp -b " +version});