Skip to main content
Module

x/typeorm/src/index.ts>DeleteQueryBuilder#from

Forked from https://github.com/typeorm/typeorm
Latest
method DeleteQueryBuilder.prototype.from
import { DeleteQueryBuilder } from "https://deno.land/x/typeorm@v0.2.23-rc10/src/index.ts";

Specifies FROM which entity's table select/update/delete will be executed. Also sets a main string alias of the selection data.

Parameters

entityTarget: ObjectType<T> | EntitySchema<T> | string
optional
aliasName: string

Returns

DeleteQueryBuilder<T>