@@ -54,7 +54,7 @@ public static ChildQuery Child(this ChildQuery node, string path)
54
54
}
55
55
56
56
/// <summary>
57
- /// Order data by given <see cref ="propertyName"/>. Note that this is used mainly for following filtering queries and due to firebase implementation
57
+ /// Order data by given <paramref name ="propertyName"/>. Note that this is used mainly for following filtering queries and due to firebase implementation
58
58
/// the data may actually not be ordered.
59
59
/// </summary>
60
60
/// <param name="child"> The child. </param>
@@ -66,7 +66,7 @@ public static OrderQuery OrderBy(this ChildQuery child, string propertyName)
66
66
}
67
67
68
68
/// <summary>
69
- /// Instructs firebase to send data greater or equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
69
+ /// Instructs firebase to send data greater or equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
70
70
/// </summary>
71
71
/// <param name="child"> Current node. </param>
72
72
/// <param name="value"> Value to start at. </param>
@@ -77,7 +77,7 @@ public static FilterQuery StartAt(this ParameterQuery child, string value)
77
77
}
78
78
79
79
/// <summary>
80
- /// Instructs firebase to send data lower or equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
80
+ /// Instructs firebase to send data lower or equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
81
81
/// </summary>
82
82
/// <param name="child"> Current node. </param>
83
83
/// <param name="value"> Value to start at. </param>
@@ -88,7 +88,7 @@ public static FilterQuery EndAt(this ParameterQuery child, string value)
88
88
}
89
89
90
90
/// <summary>
91
- /// Instructs firebase to send data equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
91
+ /// Instructs firebase to send data equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
92
92
/// </summary>
93
93
/// <param name="child"> Current node. </param>
94
94
/// <param name="value"> Value to start at. </param>
@@ -99,7 +99,7 @@ public static FilterQuery EqualTo(this ParameterQuery child, string value)
99
99
}
100
100
101
101
/// <summary>
102
- /// Instructs firebase to send data greater or equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
102
+ /// Instructs firebase to send data greater or equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
103
103
/// </summary>
104
104
/// <param name="child"> Current node. </param>
105
105
/// <param name="value"> Value to start at. </param>
@@ -110,7 +110,7 @@ public static FilterQuery StartAt(this ParameterQuery child, double value)
110
110
}
111
111
112
112
/// <summary>
113
- /// Instructs firebase to send data lower or equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
113
+ /// Instructs firebase to send data lower or equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
114
114
/// </summary>
115
115
/// <param name="child"> Current node. </param>
116
116
/// <param name="value"> Value to start at. </param>
@@ -121,7 +121,7 @@ public static FilterQuery EndAt(this ParameterQuery child, double value)
121
121
}
122
122
123
123
/// <summary>
124
- /// Instructs firebase to send data equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
124
+ /// Instructs firebase to send data equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
125
125
/// </summary>
126
126
/// <param name="child"> Current node. </param>
127
127
/// <param name="value"> Value to start at. </param>
@@ -132,7 +132,7 @@ public static FilterQuery EqualTo(this ParameterQuery child, double value)
132
132
}
133
133
134
134
/// <summary>
135
- /// Instructs firebase to send data greater or equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
135
+ /// Instructs firebase to send data greater or equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
136
136
/// </summary>
137
137
/// <param name="child"> Current node. </param>
138
138
/// <param name="value"> Value to start at. </param>
@@ -143,7 +143,7 @@ public static FilterQuery StartAt(this ParameterQuery child, long value)
143
143
}
144
144
145
145
/// <summary>
146
- /// Instructs firebase to send data lower or equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
146
+ /// Instructs firebase to send data lower or equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
147
147
/// </summary>
148
148
/// <param name="child"> Current node. </param>
149
149
/// <param name="value"> Value to start at. </param>
@@ -154,7 +154,7 @@ public static FilterQuery EndAt(this ParameterQuery child, long value)
154
154
}
155
155
156
156
/// <summary>
157
- /// Instructs firebase to send data equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
157
+ /// Instructs firebase to send data equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
158
158
/// </summary>
159
159
/// <param name="child"> Current node. </param>
160
160
/// <param name="value"> Value to start at. </param>
@@ -165,7 +165,7 @@ public static FilterQuery EqualTo(this ParameterQuery child, long value)
165
165
}
166
166
167
167
/// <summary>
168
- /// Instructs firebase to send data equal to the <see cref ="value"/>. This must be preceded by an OrderBy query.
168
+ /// Instructs firebase to send data equal to the <paramref name ="value"/>. This must be preceded by an OrderBy query.
169
169
/// </summary>
170
170
/// <param name="child"> Current node. </param>
171
171
/// <param name="value"> Value to start at. </param>
@@ -186,7 +186,7 @@ public static FilterQuery EqualTo(this ParameterQuery child)
186
186
}
187
187
188
188
/// <summary>
189
- /// Limits the result to first <see cref ="count"/> items.
189
+ /// Limits the result to first <paramref name ="count"/> items.
190
190
/// </summary>
191
191
/// <param name="child"> Current node. </param>
192
192
/// <param name="count"> Number of elements. </param>
@@ -197,7 +197,7 @@ public static FilterQuery LimitToFirst(this ParameterQuery child, int count)
197
197
}
198
198
199
199
/// <summary>
200
- /// Limits the result to last <see cref ="count"/> items.
200
+ /// Limits the result to last <paramref name ="count"/> items.
201
201
/// </summary>
202
202
/// <param name="child"> Current node. </param>
203
203
/// <param name="count"> Number of elements. </param>
@@ -231,7 +231,7 @@ public static async Task<FirebaseObject<T>> PostAsync<T>(this FirebaseQuery quer
231
231
/// <param name="query"> Current node. </param>
232
232
/// <param name="item"> Object to fan out. </param>
233
233
/// <param name="relativePaths"> Locations where to store the item. </param>
234
- public static Task FanOut < T > ( this ChildQuery child , T item , params string [ ] relativePaths )
234
+ public static Task FanOut < T > ( this ChildQuery query , T item , params string [ ] relativePaths )
235
235
{
236
236
if ( relativePaths == null )
237
237
{
@@ -245,7 +245,7 @@ public static Task FanOut<T>(this ChildQuery child, T item, params string[] rela
245
245
fanoutObject . Add ( path , item ) ;
246
246
}
247
247
248
- return child . PatchAsync ( fanoutObject ) ;
248
+ return query . PatchAsync ( fanoutObject ) ;
249
249
}
250
250
}
251
251
}
0 commit comments