internal static string ODataVersionNotSupported(ODataVersion odataVersion, ODataVersion minVersion, ODataVersion maxVersion) => $"The OData version '{odataVersion}' specified in the {ODataRequestHeaderNames.ODataVersion} header indicating the version used to generate the request must be a valid OData version supported by this service between version '{minVersion}' and '{maxVersion}'.";
internal static string ODataMaxVersionNotSupported(ODataVersion odataMaxVersion, ODataVersion minVersion, ODataVersion maxVersion) => $"The OData version '{odataMaxVersion}' specified in the {ODataRequestHeaderNames.ODataMaxVersion} header indicating the maximum acceptable version of the response must be a valid OData version supported by this service between version '{minVersion}' and '{maxVersion}'.";