Skip to content

Commit

Permalink
Add Guid operators for CqlFunction (#587)
Browse files Browse the repository at this point in the history
Co-authored-by: João Reis <joao.r.reis@outlook.com>
  • Loading branch information
xsoheilalizadeh and joao-r-reis committed Feb 22, 2024
1 parent 457d59f commit d1ab72a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions src/Cassandra/Data/Linq/CqlFunction.cs
Expand Up @@ -175,6 +175,46 @@ public static CqlFunction Token(object key1, object key2, object key3, object ke
{
throw new InvalidOperationException();
}

public static bool operator <=(CqlFunction a, Guid b)
{
throw new InvalidOperationException();
}

public static bool operator >=(CqlFunction a, Guid b)
{
throw new InvalidOperationException();
}

public static bool operator >(CqlFunction a, Guid b)
{
throw new InvalidOperationException();
}

public static bool operator <(CqlFunction a, Guid b)
{
throw new InvalidOperationException();
}

public static bool operator <=(Guid b, CqlFunction a)
{
throw new InvalidOperationException();
}

public static bool operator >=(Guid b, CqlFunction a)
{
throw new InvalidOperationException();
}

public static bool operator <(Guid b, CqlFunction a)
{
throw new InvalidOperationException();
}

public static bool operator >(Guid b, CqlFunction a)
{
throw new InvalidOperationException();
}

public override bool Equals(object obj)
{
Expand Down

0 comments on commit d1ab72a

Please sign in to comment.