Hi Bill.
Please try something like this:
Where = new And
{
Conditions = new Condition[]
{
new Compare {LeftExpression = new FieldExpression {FieldName = "Name"}, Operator = Operator.BeginsWith, RightExpression = new ConstantExpression {Value="a"}},
new Compare {LeftExpression = new FieldExpression {FieldName = "StartDate"}, Operator = Operator.GreaterThan, RightExpression = new ConstantExpression {Value=new DateTime (2014,1,1)}}
}
}
Hope this helps,
Ophir