0

我刚刚开始使用 LinqPad:

var con1 = from con in table
where con.tableKey == Guid.Parse("8EA5DC2C-2603-499A-A9D3-00019B53421F")
select con;

con.Dump();

向我抛出错误

") or end of expression expected (change the Query Language to 'C# Statements' for multi-statement queries)"

谁能纠正我?

而且我还注意到 linqpad 上的 File-> New Query、New Query 相同的属性。它们之间有什么区别?谢谢。

4

1 回答 1

4

确保您的查询类型是 C# 语句而不是 C# 表达式...但是如果您执行的语句不超过 1 条,则不需要 con.Dump(); (我认为)

于 2012-10-31T06:29:30.727 回答