custom static method
Implementation
static Insertable<PortalApplicationCategory> custom({
Expression<int>? id,
Expression<int>? user,
Expression<String>? distinguishedName,
Expression<String>? nameZh,
Expression<String>? nameEn,
Expression<int>? position,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (user != null) 'user': user,
if (distinguishedName != null) 'distinguished_name': distinguishedName,
if (nameZh != null) 'name_zh': nameZh,
if (nameEn != null) 'name_en': nameEn,
if (position != null) 'position': position,
});
}