Question 26
In Ruby on Rails
You are assigned to work on a Rails project and discover thefollowing code in a view. Taking into account Rails conventions,what would you recommend, if anything, to improve theapplication
<% @users = User.find_by_sql(“select * from users whereemployee_id =3”)%>
QUESTION 26 30 points You are assigned to work on a Rails project and discover the following code in a view. Taking into account Rails conventions, what would you recommend if anything, to improve the application? <% Qusers = User.find_by_sql(“select from users where employee_id = 3”) %> Show transcribed image text QUESTION 26 30 points You are assigned to work on a Rails project and discover the following code in a view. Taking into account Rails conventions, what would you recommend if anything, to improve the application?
Expert Answer
Answer to Question 26 In Ruby on Rails You are assigned to work on a Rails project and discover the following code in a view. Taki…