コード例 #1
0
ファイル: Catalog.cs プロジェクト: awesomedotnetcore/Andl
        // return value for system tables
        public RelationValue GetCatalogTableValue(CatalogTables table)
        {
            var tablemaker = CatalogTableMaker.Create(_catalogtableheadings[table]);

            _catalogtablemaker[table](tablemaker, PersistentVars.GetEntries());
            return(RelationValue.Create(tablemaker.Table));
        }
コード例 #2
0
ファイル: Catalog.cs プロジェクト: awesomedotnetcore/Andl
 public static DataHeading CatalogTableHeading(CatalogTables table)
 {
     return(_catalogtableheadings[table]);
 }