Skip to content

Commit 5e8ccdd

Browse files
committed
#27 clean up
1 parent 8d28883 commit 5e8ccdd

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

SubSonic/Extensions/Internal/Expressions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ namespace SubSonic
88

99
internal static partial class InternalExtensions
1010
{
11-
public static Func<TSource, bool> CombinePredicates<TSource>(Func<TSource, bool> predicate1, Func<TSource, bool> predicate2) =>
12-
(x) => predicate1(x) && predicate2(x);
13-
1411
public static Expression ReBuild(this Expression expression, ParameterExpression parameter)
1512
{
1613
if (expression is BinaryExpression binary)

SubSonic/Linq/Expressions/DbDeleteExpression.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq.Expressions;
4-
using System.Text;
53

64
namespace SubSonic.Linq.Expressions
75
{
86
using Structure;
9-
using System.Security.Cryptography;
107

118
public class DbDeleteExpression
129
: DbConstantExpression

0 commit comments

Comments
 (0)