|
|
@ -1,4 +1,4 @@ |
|
|
// ==========================================================================
|
|
|
// ==========================================================================
|
|
|
// Squidex Headless CMS
|
|
|
// Squidex Headless CMS
|
|
|
// ==========================================================================
|
|
|
// ==========================================================================
|
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
|
@ -128,6 +128,10 @@ namespace Squidex.Domain.Apps.Entities.Assets.Queries |
|
|
{ |
|
|
{ |
|
|
return edmModel.ParseQuery(odata).ToQuery(); |
|
|
return edmModel.ParseQuery(odata).ToQuery(); |
|
|
} |
|
|
} |
|
|
|
|
|
catch (ValidationException) |
|
|
|
|
|
{ |
|
|
|
|
|
throw; |
|
|
|
|
|
} |
|
|
catch (NotSupportedException) |
|
|
catch (NotSupportedException) |
|
|
{ |
|
|
{ |
|
|
throw new ValidationException(T.Get("common.odataNotSupported", new { odata })); |
|
|
throw new ValidationException(T.Get("common.odataNotSupported", new { odata })); |
|
|
|