不要怂,就是干,撸起袖子干!

findOne.ts 238 Bytes
import { User } from "./models/User";

User.findOne({ where: { firstName: 'John' }});

// The below line should be an error if uncommented, thanks to the new
// TAttributes-based typechecking
// User.findOne({ where: { blah: 'blah2' }});