Implement Between linq expression

It would be nice to have a Between expression with Linq, example:

.Where(Linq['PropName'].Between(MinValue, MaxValue))
.Add(...)

-- or --

.Where(Linq.Between('PropName', MinValue, MaxValue))
.Add(...)

Att