findLocalField method

FieldElement findLocalField(
  1. OrmBuildContext ctx
)

Implementation

FieldElement findLocalField(OrmBuildContext ctx) {
  return ctx.effectiveFields.firstWhere(
      (f) => ctx.buildContext.resolveFieldName(f.name) == localKey,
      orElse: () {
    throw '${ctx.buildContext.clazz.name} has no field that maps to the name "$localKey", '
        'but it has a @HasMany() relation that expects such a field.';
  });
}