我正在应用此过滤器:
var date = new DateTime(2019, 06, 20).ToUniversalTime().ToString("dd/MM/yyyy HH:mm");
MAPITable mt = session.Stores.MAPITable;
mt.Item = inbox.Items;
var records = mt.ExecSQL($"select Subject, EntryID from Inbox Where "urn:schemas:httpmail:datereceived" > {date}");
我有这个例外:
consoleapplication1.exe
中出现了一个未经手的例外。
附加信息:未支撑的操作员:/
是否可以执行这种过滤器?[使用>运算符]
您需要确保日期变量以单语引号格式和编码。