< Summary

Class:Azure.Data.Tables.Models.QueryOptions
Assembly:Azure.Data.Tables
File(s):C:\Git\azure-sdk-for-net\sdk\tables\Azure.Data.Tables\src\Generated\Models\QueryOptions.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:27
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
get_Format()-100%100%
get_Top()-100%100%
get_Select()-100%100%
get_Filter()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\tables\Azure.Data.Tables\src\Generated\Models\QueryOptions.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.Data.Tables.Models
 9{
 10    /// <summary> Parameter group. </summary>
 11    internal partial class QueryOptions
 12    {
 13        /// <summary> Initializes a new instance of QueryOptions. </summary>
 340814        public QueryOptions()
 15        {
 340816        }
 17
 18        /// <summary> Specifies the media type for the response. </summary>
 1022419        public OdataMetadataFormat? Format { get; set; }
 20        /// <summary> Maximum number of records to return. </summary>
 169621        public int? Top { get; set; }
 22        /// <summary> Select expression using OData notation. Limits the columns on each record to just those requested,
 158423        public string Select { get; set; }
 24        /// <summary> OData filter expression. </summary>
 224425        public string Filter { get; set; }
 26    }
 27}