Skip to content

Commit c9fdc4f

Browse files
committed
fix overload issue
1 parent 290074d commit c9fdc4f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/FluentCommand/Query/DeleteEntityBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public DeleteEntityBuilder<TEntity> WhereIf<TValue>(
197197
public DeleteEntityBuilder<TEntity> WhereIn<TValue>(
198198
Expression<Func<TEntity, TValue>> property,
199199
IEnumerable<TValue> parameterValues,
200-
string tableAlias)
200+
string tableAlias = null)
201201
{
202202
var propertyAccessor = _typeAccessor.FindProperty(property);
203203

src/FluentCommand/Query/IWhereEntityBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ TBuilder Where<TValue>(
5555
TBuilder WhereIn<TValue>(
5656
Expression<Func<TEntity, TValue>> property,
5757
IEnumerable<TValue> parameterValues,
58-
string tableAlias);
58+
string tableAlias = null);
5959

6060
/// <summary>
6161
/// Conditionally create a where in clause with the specified property and values

src/FluentCommand/Query/LogicalEntityBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public LogicalEntityBuilder<TEntity> WhereIf<TValue>(
7878
public LogicalEntityBuilder<TEntity> WhereIn<TValue>(
7979
Expression<Func<TEntity, TValue>> property,
8080
IEnumerable<TValue> parameterValues,
81-
string tableAlias)
81+
string tableAlias = null)
8282
{
8383
var propertyAccessor = _typeAccessor.FindProperty(property);
8484

src/FluentCommand/Query/UpdateEntityBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public UpdateEntityBuilder<TEntity> WhereIf<TValue>(
274274
public UpdateEntityBuilder<TEntity> WhereIn<TValue>(
275275
Expression<Func<TEntity, TValue>> property,
276276
IEnumerable<TValue> parameterValues,
277-
string tableAlias)
277+
string tableAlias = null)
278278
{
279279
var propertyAccessor = _typeAccessor.FindProperty(property);
280280

src/FluentCommand/Query/WhereEntityBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public WhereEntityBuilder<TEntity> Where<TValue>(
5656
public WhereEntityBuilder<TEntity> WhereIn<TValue>(
5757
Expression<Func<TEntity, TValue>> property,
5858
IEnumerable<TValue> parameterValues,
59-
string tableAlias)
59+
string tableAlias = null)
6060
{
6161
var propertyAccessor = _typeAccessor.FindProperty(property);
6262

0 commit comments

Comments
 (0)