Skip to content

Commit d1ab72a

Browse files
Add Guid operators for CqlFunction (#587)
Co-authored-by: João Reis <[email protected]>
1 parent 457d59f commit d1ab72a

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

src/Cassandra/Data/Linq/CqlFunction.cs

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,46 @@ public static CqlFunction Token(object key1, object key2, object key3, object ke
175175
{
176176
throw new InvalidOperationException();
177177
}
178+
179+
public static bool operator <=(CqlFunction a, Guid b)
180+
{
181+
throw new InvalidOperationException();
182+
}
183+
184+
public static bool operator >=(CqlFunction a, Guid b)
185+
{
186+
throw new InvalidOperationException();
187+
}
188+
189+
public static bool operator >(CqlFunction a, Guid b)
190+
{
191+
throw new InvalidOperationException();
192+
}
193+
194+
public static bool operator <(CqlFunction a, Guid b)
195+
{
196+
throw new InvalidOperationException();
197+
}
198+
199+
public static bool operator <=(Guid b, CqlFunction a)
200+
{
201+
throw new InvalidOperationException();
202+
}
203+
204+
public static bool operator >=(Guid b, CqlFunction a)
205+
{
206+
throw new InvalidOperationException();
207+
}
208+
209+
public static bool operator <(Guid b, CqlFunction a)
210+
{
211+
throw new InvalidOperationException();
212+
}
213+
214+
public static bool operator >(Guid b, CqlFunction a)
215+
{
216+
throw new InvalidOperationException();
217+
}
178218

179219
public override bool Equals(object obj)
180220
{

0 commit comments

Comments
 (0)