Let's have the following:
public interface IOne {
UInt64 Id { get; }
Int16 Size { get; }
}
public interface ITwo {
UInt64 OneId { get; }
Int16 Color { get; }
}
As explained here the way to reuse a linq expression is to write something like this:
public static Expression<Func<IOne, bool>> MyWhereExpression( int value ){
return (o) => (o.Size > value);
}
int v = 5;
IQueryable<IOne> records = from one in s.Query<IOne>()
.Where(MyWhereExpression(v))
select one;
When I want to do the same with two tables I encounter a problem.
The expression:
public static Expression<Func<IOne, ITwo, bool>> MyWhereExpression2(int color ) {
return (one,two) => (one.Id == two.OneId) && (two.Color > color );
}
Linq 1:
int color = 100;
IQueryable<IOne> records = from one in s.Query<IOne>()
from two in s.Query<ITwo>()
.Where(MyWhereExpression2(color))
select one;
This doesn't work as .Where sticks to only the 2nd from.
Linq 2:
int color = 100;
IQueryable<IOne> records = (from one in s.Query<IOne>()
from two in s.Query<ITwo>()
select new { one, two })
.Where(MyWhereExpression2(color));
This results in
Argument 2: cannot convert from 'Expression<System.Func<IOne,ITwo,bool>>' to 'System.Func<AnonymousType#1,int,bool>'
I understand the error message about the AnonymousType, but I cannot figure out how to write the query.
The reason why I want to use an expression rather than just write
where (one.Id == two.OneId) && (two.Color > color )
directly in the linq query is because I want to reuse this expression in multiple linq queries.