Executes the AnalyzeTable on the database server. This method generates table statistics. This method may needs some privilege according to the database product and its version. Examples Following section demonstrates ANALYZE the table(s).
        using(var exc = cn.Executer()) 
        {
			// by table alias
		    var t0 = new Orders().AsQueryable();
            exc.AnalyzeTable(t0);

			// by table name
            exc.AnalyzeTable("table1");
        }
    
MsSql
UPDATE STATISTICS [Orders]

MySql
ANALYZE TABLE [Orders]

PostgreSql
ANALYZE [Orders]

Oracle
ANALYZE TABLE [Orders] COMPUTE STATISTICS