我有以下 LINQ:
var items = from n in db.Roles
where n.importID == importID
select n;
“importID”是一个字符串作为参数和一个字符串?对于数据库对象。如果数据库中的 importID 为空,则不应匹配。如何做到这一点?
编译器消息:
Operator '==' cannot be applied to operands of type 'string?' and 'string'