Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6937481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:22:06+00:00 2026-05-27T12:22:06+00:00

In the below snippet, I’m doing a lot of database manipulation in the view.

  • 0

In the below snippet, I’m doing a lot of database manipulation in the view. (The .where, and two each loops). What is the best way to refactor this code out of the view?

In the view: index.html.erb

<%- @lesson.sections.each do |section| -%>
          <%- section_correlations = section.correlations.where(:grade => 4) %>
          <%- unless section_correlations.blank? -%>
              <h3><%= section.full_title %></h3>
                <%- section_correlations.each do |correlation| -%>
                      <%= correlation.description %>
                <%- end -%>
          <%- end -%>
<%- end -%>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T12:22:06+00:00Added an answer on May 27, 2026 at 12:22 pm

    in the Section model file you could add the following method

    def get_correlation_descriptions(grade)
      correlations.where(:grade => grade).map { |c| c.description }
    end
    

    and in your lesson model:

    def sections_with_correlation_names(grade)
      section_data = []
      sections.each do |s|
        correlation_names = s.get_correlation_descriptions(grade)
        unless correlation_names.blank?
          section_data << { :name => s.full_title, :correlations => correlation_names } 
        end
      end
      section_data
    end
    

    then in your view:

    <%- @lesson.sections_with_correlation_names(4).each do |section| -%>
      <h3><%= section[:name] %></h3>
      <%= section[:correlations].join("\n") %>
    <%- end -%>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using the snippet below, I've attempted to extract the text data from this PDF
In the code snippet below, I am trying to persist two entities - Account
Does the below snippet have potential to do error logging to a database or
The snippet below loops through some web pages, grabs the html and then looks
The code snippet below causes this warning in NetBeans 6.9. [rawtypes] found raw type:
The below code snippet best explains what I am trying to achieve: [Test] public
I had an argument with my friend regarding this. Consider the below snippet, for(i=0;
I have below snippet of code in which TestClass is extending jPanel which is
//I have created below snippet to let the sensor to be detected. -(void)addProximitySensorControl {
i am working on struts2-jquery plugin . the below snippet is working fine in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.