我有这个代码:
var existsQuery = from e
in TableServiceContext.CreateQuery<entity>(tableName)
where
e.PartitionKey == entity.PartitionKey
&& e.RowKey == entity.RowKey
select e;
entity existingObject;
try
{
existingObject = existsQuery.First();
}
catch (Exception) { existingObject = null; }
我只想问我是否可以在 select 语句没有返回任何值的时候不使用 try catch,因为没有 try catch 我会抛出异常。
我正在更新或插入 提供的图像。