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).
        {{hl}}var ddl = connection.DDL();{{/hl}}

		// by table alias
		var t0 = new Orders().AsQueryable();
        ddl.{{hl}}AnalyzeTable(t0){{/hl}};

		// by table name
        ddl.{{hl}}AnalyzeTable("table1"){{/hl}};