Represents a dictionary of FQL queries. More...
Public Member Functions | |
| QueryObj (IDictionary< string, Query > v) | |
| Initializes a new instance of the QueryObj class with the specified value. | |
| override void | Serialize (MappingContext ctx, Utf8FaunaWriter writer) |
| Serializes the query value. | |
| override bool | Equals (Query? o) |
| Determines whether the specified QueryObj is equal to the current QueryObj. | |
| override bool | Equals (object? o) |
| Determines whether the specified object is equal to the current QueryObj. | |
| override int | GetHashCode () |
| The default hash function. | |
| override string | ToString () |
| Returns a string that represents the current QueryObj. | |
Public Member Functions inherited from Fauna.Query | |
| void | Serialize (MappingContext ctx, Utf8FaunaWriter writer) |
| Serializes the query into the provided stream. | |
| override int | GetHashCode () |
| Returns a hash code for the current query. | |
| override bool | Equals (object? otherObject) |
| Determines whether the specified object is equal to the current query. | |
| bool | Equals (Query? otherQuery) |
| Determines whether the specified Query is equal to the current query. | |
Static Public Member Functions | |
| static bool | operator== (QueryObj left, QueryObj right) |
| Determines whether two specified instances of QueryObj are equal. | |
| static bool | operator!= (QueryObj left, QueryObj right) |
| Determines whether two specified instances of QueryObj are not equal. | |
Static Public Member Functions inherited from Fauna.Query | |
| static Query | FQL (ref QueryStringHandler handler) |
| Constructs an FQL query using the specified QueryStringHandler. | |
Properties | |
| IDictionary< string, Query > | Unwrap [get] |
| Gets the value of the specified type represented in the query. | |
Represents a dictionary of FQL queries.
Definition at line 9 of file QueryObj.cs.
| Fauna.QueryObj.QueryObj | ( | IDictionary< string, Query > | v | ) |
Initializes a new instance of the QueryObj class with the specified value.
| v | The value of the specified type to be represented in the query. |
Definition at line 20 of file QueryObj.cs.
| override bool Fauna.QueryObj.Equals | ( | object? | o | ) |
Determines whether the specified object is equal to the current QueryObj.
| o | The object to compare with the current QueryObj. |
Definition at line 48 of file QueryObj.cs.
| override bool Fauna.QueryObj.Equals | ( | Query? | o | ) |
Determines whether the specified QueryObj is equal to the current QueryObj.
| o | The QueryObj to compare with the current QueryObj. |
| override int Fauna.QueryObj.GetHashCode | ( | ) |
The default hash function.
Definition at line 57 of file QueryObj.cs.
Determines whether two specified instances of QueryObj are not equal.
| left | The first QueryObj to compare. |
| right | The second QueryObj to compare. |
Definition at line 89 of file QueryObj.cs.
Determines whether two specified instances of QueryObj are equal.
| left | The first QueryObj to compare. |
| right | The second QueryObj to compare. |
Definition at line 78 of file QueryObj.cs.
| override void Fauna.QueryObj.Serialize | ( | MappingContext | ctx, |
| Utf8FaunaWriter | writer | ||
| ) |
Serializes the query value.
| ctx | The serialization context. |
| writer | The writer to serialize the query value to. |
Implements Fauna.IQueryFragment.
Definition at line 30 of file QueryObj.cs.
| override string Fauna.QueryObj.ToString | ( | ) |
Returns a string that represents the current QueryObj.
|
get |
Gets the value of the specified type represented in the query.
Definition at line 14 of file QueryObj.cs.