<!-- What problem are you trying to solve? --> Add support StandardDeviation query such as Max(),Min(),Sum() etc... <!-- Describe the solution you'd like --> eg: ```charp dbset.Scores.Select(e=>e.English).StandardDeviation(); dbset.Scores.StandardDeviation(e=>e.English); ```