public void GetColumnWithAliasEntity()
        {
            AggregateTest entity = new AggregateTest();

            entity.Query.es.CountAll      = true;
            entity.Query.es.CountAllAlias = "Count";
            entity.Query.Load();

            Assert.AreEqual(30, Convert.ToInt32(entity.GetColumn("Count")));
        }