Answers for "typeorm search like"

0

typeorm search like

import {Like} from "typeorm";

const loadedPosts = await connection.getRepository(Post).find({
    title: Like("%out #%")
});
Posted by: Guest on January-21-2021

Browse Popular Code Answers by Language