custom static method
- Expression<
int> ? courseOffering, - Expression<
int> ? teacher, - Expression<
int> ? rowid,
Implementation
static Insertable<CourseOfferingTeacher> custom({
Expression<int>? courseOffering,
Expression<int>? teacher,
Expression<int>? rowid,
}) {
return RawValuesInsertable({
if (courseOffering != null) 'course_offering': courseOffering,
if (teacher != null) 'teacher': teacher,
if (rowid != null) 'rowid': rowid,
});
}