Skip to content

Commit 22a90fc

Browse files
committed
Remove conflicting overload
1 parent ef23528 commit 22a90fc

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/Extensions/ParadeDbFunctionsExtensions.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ [NotParameterized] SnippetsOptions? options
8282
public static bool Proximity<TProperty>(
8383
this DbFunctions _,
8484
TProperty property,
85-
PdbQuery query
85+
PdbProximityQuery query
8686
) => throw new InvalidOperationException(CoreStrings.FunctionOnClient(nameof(Proximity)));
8787

8888
[DbFunction]
@@ -151,10 +151,6 @@ public static bool All<TProperty>(this DbFunctions _, TProperty property) =>
151151
public static bool Exists<TProperty>(this DbFunctions _, TProperty property) =>
152152
throw new InvalidOperationException(CoreStrings.FunctionOnClient(nameof(Exists)));
153153

154-
[DbFunction]
155-
public static bool Parse<TProperty>(this DbFunctions _, TProperty property, string pattern) =>
156-
throw new InvalidOperationException(CoreStrings.FunctionOnClient(nameof(Parse)));
157-
158154
[DbFunction]
159155
public static bool Parse<TProperty>(
160156
this DbFunctions _,

0 commit comments

Comments
 (0)