Tables and Views
Entity Base
import { EntityBase } from "./wire-orm-base.ts";
class Categories extends EntityBase {
public CategoryID: number;
public CategoryName: string;
public Description: string;
...
}Fields
enum CategoriesField {
CategoryID = "CategoryID",
CategoryName = "CategoryName",
Description = "Description"
}Constructor
DataTable Interface
Last updated