私はこのコードを持っています:
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; }
try catch がないと例外がスローされるため、select ステートメントが値を返さなかったときに try catch を使用しないことが可能かどうかを尋ねたいと思います。
提供された画像の更新または挿入を行っています。