Fixes some documentation issues
This commit is contained in:
parent
b62c04bbb5
commit
6badbebc12
|
@ -26,7 +26,7 @@ public abstract class AttributedQueryFilterBuilder : IQueryFilterBuilder
|
|||
|
||||
var paramName = attribute.ParamName ?? propertyInfo.Name;
|
||||
var value = propertyInfo.GetValue(this)?.ToString();
|
||||
if (!string.IsNullOrEmpty(value)) filterBucket.Add(new KeyValuePair<string, string>(paramName, value));
|
||||
if (!string.IsNullOrEmpty(value)) filterBucket.Add(new KeyValuePair<string, string>(paramName, value!));
|
||||
}
|
||||
|
||||
var filterBuilder = new StringBuilder();
|
||||
|
|
|
@ -46,7 +46,7 @@ public class CardQueryFilterBuilder : AttributedQueryFilterBuilder
|
|||
public int? Uuid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Sets a filter for the <see cref="Card.Rarity/>.
|
||||
/// Sets a filter for the <see cref="Card.Rarity" />.
|
||||
///
|
||||
/// </summary>
|
||||
[QueryFilterName("rarity")]
|
||||
|
|
Loading…
Reference in a new issue