Skip to content

Commit

Permalink
fix QBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
ZEXSM committed Feb 10, 2024
1 parent 0692da0 commit eb69a1b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/OData.QueryBuilder/Builders/QBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ public QBuilder(string baseUrl)
_builder = new StringBuilder(baseUrl);
}

public QBuilder()
{
_builder = new StringBuilder();
}

public bool IsEmpty() => _builder.Length == 0;

public QBuilder Append(string value)
Expand Down

0 comments on commit eb69a1b

Please sign in to comment.