We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d6ff63 + f59e4b4 commit 83ffd14Copy full SHA for 83ffd14
MscrmTools.Shared/Query.cs
@@ -190,6 +190,18 @@ public Query(string table)
190
191
#endregion Properties
192
193
+ #region Operators
194
+
195
+ /// <summary>
196
+ /// Get the <c>QueryExpression</c> representation of this <see cref="Query{T}"/>
197
+ /// </summary>
198
+ public static implicit operator QueryExpression(Query<T> query)
199
+ {
200
+ return query.QueryExpression;
201
+ }
202
203
+ #endregion Operators
204
205
#region QueryExpression
206
207
/// <summary>
0 commit comments