User Adam Lassek - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:54:33Zhttp://stackoverflow.com/feeds/user/1249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1767662/why-is-this-render-partial-line-iterating-my-collection-twice0Why is this render :partial line iterating my collection twice?Adam Lassek2009-11-20T00:52:24Z2009-11-20T21:26:58Z
<p>Given these relationships:</p>
<pre><code>class Account < ActiveRecord::Base
has_many :employments
has_many :people, :through => :employments
accepts_nested_attributes_for :employments
end
class Employment < ActiveRecord::Base
belongs_to :account
belongs_To :person
end
</code></pre>
<p>I'm trying to list the employment records for an account:</p>
<pre><code><% form_for @account do |f| -%>
<% f.fields_for :employments do |e| -%>
<%= render :partial => 'employment', :collection => @account.employments, :locals => { :f => e } %>
<% end -%>
<% end -%>
</code></pre>
<p>I've verified that the employment table in @account contains two records, but I get four copies of the partial because it iterates employments twice:</p>
<pre><code>Employment Load (1.0ms) SELECT * FROM [employments] WHERE ([employments].account_id = 1)
Person Load (1.3ms) SELECT * FROM [people] WHERE ([people].[id] = 2)
Rendered accounts/_employment (17.9ms)
Person Load (1.5ms) SELECT * FROM [people] WHERE ([people].[id] = 1)
Rendered accounts/_employment (5.1ms)
Rendered accounts/_employment (2.2ms)
Rendered accounts/_employment (2.1ms)
</code></pre>
<p>Can anybody explain why that would happen?</p>
<p><hr></p>
<p>Here's some additional information:</p>
<p>The <code>_employment.html.erb</code> partial:</p>
<pre><code><div class="employment">
<span class="name"><%= link_to h(employment.person.name), person_path(employment.person) %></span>
<span class="role"><%=h employment.role %></span>
<span class="commands"><%= remove_child_link "Remove", f %></span>
</div>
</code></pre>
<p><code>remove_child_link</code> is the only place I need to generate a form field at. It creates the <code>_delete</code> field for the record and wires up a remove link that changes the value to '1'. The 'role' property may also be editable, though. The important thing is I don't want all of the fields to be editable.</p>
<p>The <code>accounts_controller</code> actions for this view:</p>
<pre><code>def edit
@account = Account.find(params[:id])
end
def update
@account = Account.find(params[:id])
respond_to do |format|
if @account.update_attributes(params[:account])
flash[:notice] = "#{@account.business_name} was successfully updated."
format.html { redirect_to @account }
else
format.html { render :action => "edit" }
end
end
end
</code></pre>
<p><hr></p>
<p>Ben got me going in the right direction. Some runtime inspection reveals that the record is stored in the <code>object</code> variable (which I already knew, but in a different context). So I can rewrite the <code>fields_for</code> clause as:</p>
<pre><code><% form_for @account do |f| -%>
<% f.fields_for :employments do |e| -%>
<div class="employment">
<span class="name"><%= link_to h(e.object.person.name), person_path(e.object.person) %></span>
<span class="role"><%=h e.object.role %></span>
<span class="commands"><%= remove_child_link "Remove", e %></span>
</div>
<% end -%>
<% end -%>
</code></pre>
http://stackoverflow.com/questions/1704142/unobtrusive-dynamic-form-fields-in-rails-with-jquery0Unobtrusive dynamic form fields in Rails with jQueryAdam Lassek2009-11-09T21:54:23Z2009-11-19T22:54:42Z
<p>I'm attempting to get over the hurdle of dynamic form fields in Rails -- this appears to be something the framework doesn't handle very gracefully. I'm also using jQuery in my project. I have jRails installed, but I'd much rather write the AJAX code unobtrusively where possible.</p>
<p>My forms are fairly complex, two or three levels of nesting are not unusual. The problem I'm having is generating the correct form ids, since they are so dependant on the form builder context. I need to be able to dynamically add new fields or delete existing records in a <code>has_many</code> relationship, and I am completely at a loss.</p>
<p>Every example I've seen so far has been ugly in one way or another. Ryan Bates' <a href="http://pragprog.com/titles/fr%5Farr/advanced-rails-recipes" rel="nofollow">tutorial</a> requires RJS, which results in some pretty ugly obtrusive javascript in the markup, and seems to have been written before nested attributes. I've seen a <a href="http://github.com/timriley/complex-form-examples" rel="nofollow">fork</a> of that example with unobtrusive jQuery, but I just don't understand what it's doing, and haven't been able to get it working in my project.</p>
<p>Can somebody provide a simple example of how this is done? Is this even possible while respecting the RESTful convention of the controllers?</p>
<p><hr></p>
<p>Andy has posted an excellent example of deleting an existing record, can anybody provide an example of creating new fields with the correct attributes? I haven't been able to figure out how to do this with nested forms.</p>
http://stackoverflow.com/questions/1704142/unobtrusive-dynamic-form-fields-in-rails-with-jquery/1752054#17520540Answer by Adam Lassek for Unobtrusive dynamic form fields in Rails with jQueryAdam Lassek2009-11-17T21:43:23Z2009-11-19T22:54:42Z<p>Since nobody has offered an answer to this, even after a bounty, I've finally managed to get this working myself. This wasn't supposed to be a stumper! Hopefully this will be easier to do in Rails 3.0.</p>
<p>Andy's example is a good way of deleting records directly, without submitting a form to the server. In this particular case, what I'm really looking for is a way to dynamically add/remove fields before doing an update to a nested form. This is a slightly different case, because as the fields are removed, they aren't actually deleted until the form is submitted. I will probably end up using both depending on the situation.</p>
<p>I've based my implementation on <a href="http://github.com/timriley/complex-form-examples/" rel="nofollow">Tim Riley's complex-forms-examples</a> fork on github.</p>
<p>First set up the models, and make sure they support nested attributes:</p>
<pre><code>class Person < ActiveRecord::Base
has_many :phone_numbers, :dependent => :destroy
accepts_nested_attributes_for :phone_numbers, :reject_if => lambda { |p| p.values.all?(&:blank?) }, :allow_destroy => true
end
class PhoneNumber < ActiveRecord::Base
belongs_to :person
end
</code></pre>
<p>Create a partial view for the PhoneNumber's form fields:</p>
<pre><code><div class="fields">
<%= f.text_field :description %>
<%= f.text_field :number %>
</div>
</code></pre>
<p>Next write a basic edit view for the Person model:</p>
<pre><code><% form_for @person, :builder => LabeledFormBuilder do |f| -%>
<%= f.text_field :name %>
<%= f.text_field :email %>
<% f.fields_for :phone_numbers do |ph| -%>
<%= render :partial => 'phone_number', :locals => { :f => ph } %>
<% end -%>
<%= f.submit "Save" %>
<% end -%>
</code></pre>
<p>This will work by creating a set of template fields for the PhoneNumber model that we can duplicate with javascript. We'll create helper methods in <code>app/helpers/application_helper.rb</code> for this:</p>
<pre><code>def new_child_fields_template(form_builder, association, options = {})
options[:object] ||= form_builder.object.class.reflect_on_association(association).klass.new
options[:partial] ||= association.to_s.singularize
options[:form_builder_local] ||= :f
content_tag(:div, :id => "#{association}_fields_template", :style => "display: none") do
form_builder.fields_for(association, options[:object], :child_index => "new_#{association}") do |f|
render(:partial => options[:partial], :locals => { options[:form_builder_local] => f })
end
end
end
def add_child_link(name, association)
link_to(name, "javascript:void(0)", :class => "add_child", :"data-association" => association)
end
def remove_child_link(name, f)
f.hidden_field(:_delete) + link_to(name, "javascript:void(0)", :class => "remove_child")
end
</code></pre>
<p>Now add these helper methods to the edit partial:</p>
<pre><code><% form_for @person, :builder => LabeledFormBuilder do |f| -%>
<%= f.text_field :name %>
<%= f.text_field :email %>
<% f.fields_for :phone_numbers do |ph| -%>
<%= render :partial => 'phone_number', :locals => { :f => ph } %>
<% end -%>
<p><%= add_child_link "New Phone Number", :phone_numbers %></p>
<%= new_child_fields_template f, :phone_numbers %>
<%= f.submit "Save" %>
<% end -%>
</code></pre>
<p>You now have the js templating done. It will submit a blank template for each association, but the <code>:reject_if</code> clause in the model will discard them, leaving only the user-created fields. <strong>Update:</strong> <em>I've rethought this design, see below.</em></p>
<p>This isn't truly AJAX, since there isn't any communication going on to the server beyond the page load and form submit, but I honestly could not find a way to do it after the fact.</p>
<p>In fact this may provide a better user experience than AJAX, since you don't have to wait for a server response for each additional field until you're done.</p>
<p>Finally we need to wire this up with javascript. Add the following to your `public/javascripts/application.js' file:</p>
<pre><code>$(function() {
$('form a.add_child').click(function() {
var association = $(this).attr('data-association');
var template = $('#' + association + '_fields_template').html();
var regexp = new RegExp('new_' + association, 'g');
var new_id = new Date().getTime();
$(this).parent().before(template.replace(regexp, new_id));
return false;
});
$('form a.remove_child').live('click', function() {
var hidden_field = $(this).prev('input[type=hidden]')[0];
if(hidden_field) {
hidden_field.value = '1';
}
$(this).parents('.fields').hide();
return false;
});
});
</code></pre>
<p>By this time you should have a barebones dynamic form! The javascript here is really simple, and could easily be done with other frameworks. You could easily replace my <code>application.js</code> code with prototype + lowpro for instance. The basic idea is that you're not embedding gigantic javascript functions into your markup, and you don't have to write tedious <code>phone_numbers=()</code> functions in your models. Everything just works. Hooray!</p>
<p><hr></p>
<p>After some further testing, I've concluded that the templates need to be moved out of the <code><form></code> fields. Keeping them there means they get sent back to the server with the rest of the form, and that just creates headaches later.</p>
<p>I've added this to the bottom of my layout:</p>
<pre><code><div id="jstemplates">
<%= yield :jstemplates %>
</div
</code></pre>
<p>And modified the <code>new_child_fields_template</code> helper:</p>
<pre><code>def new_child_fields_template(form_builder, association, options = {})
options[:object] ||= form_builder.object.class.reflect_on_association(association).klass.new
options[:partial] ||= association.to_s.singularize
options[:form_builder_local] ||= :f
content_for :jstemplates do
content_tag(:div, :id => "#{association}_fields_template", :style => "display: none") do
form_builder.fields_for(association, options[:object], :child_index => "new_#{association}") do |f|
render(:partial => options[:partial], :locals => { options[:form_builder_local] => f })
end
end
end
end
</code></pre>
<p>Now you can remove the <code>:reject_if</code> clauses from your models and stop worrying about the templates being sent back.</p>
http://stackoverflow.com/questions/12657/can-i-create-a-listview-with-dynamic-groupitemcount1Can I create a ListView with dynamic GroupItemCount?Adam Lassek2008-08-15T19:51:05Z2009-10-27T15:44:08Z
<p>I'm using the new ASP.Net ListView control to list database items that will be grouped together in sections based on one of their columns like so:</p>
<pre><code>region1
store1
store2
store3
region2
store4
region3
store5
store6
</code></pre>
<p>Is this possible to do with the ListView's GroupItemTemplate? Every example I have seen uses a static number of items per group, which won't work for me. Am I misunderstanding the purpose of the GroupItem?</p>
http://stackoverflow.com/questions/1615988/associating-two-records-after-create-in-rails0Associating two records after create in RailsAdam Lassek2009-10-23T21:27:26Z2009-10-24T02:43:22Z
<p>I'm working on an association between two models:</p>
<pre><code>class Person < ActiveRecord::Base
belongs_to :user
end
class User < ActiveRecord::Base
has_one :person
end
</code></pre>
<p>Many <code>person</code> records exist in the system that don't necessarily correspond to a <code>user</code>, but when creating a <code>user</code> you need to either create a new <code>person</code> record or associate to an existing one.</p>
<p>What would be the best way to associate these two models when the <code>person</code> record already exists? Do I need to manually assign the <code>user_id</code> field, or is there a Rails way of doing that?</p>
http://stackoverflow.com/questions/1441547/using-rails-models-with-acceptsnestedattributesfor0Using Rails models with accepts_nested_attributes_forAdam Lassek2009-09-17T22:03:04Z2009-10-08T01:33:36Z
<p>I'm writing a simple Rails model called Person that <code>has_many :phone_numbers</code> and I'm trying to save the phone numbers in a complex form without manually writing setter methods. <code>accepts_nested_attributes_for</code> should do what I want but I'm having trouble getting it to work. Here's the code I have so far:</p>
<p><strong>Migration</strong></p>
<pre><code>class CreatePeople < ActiveRecord::Migration
def self.up
create_table :people do |t|
t.string :first_name
t.string :last_name
t.integer :address_id
t.string :email
t.timestamps
end
end
def self.down
drop_table :people
end
end
class CreatePhoneNumbers < ActiveRecord::Migration
def self.up
create_table :phone_numbers do |t|
t.string :number, :limit => 10
t.string :extension, :limit => 5
t.string :description, :null => false
t.integer :telephone_id
t.string :telephone_type
t.timestamps
end
end
def self.down
drop_table :phone_numbers
end
end
</code></pre>
<p><strong>Models</strong></p>
<pre><code>class Person < ActiveRecord::Base
has_one :address, :as => :addressable, :dependent => :destroy
has_many :phone_numbers,
:as => :telephone,
:dependent => :destroy
accepts_nested_attributes_for :phone_numbers
attr_protected :id
validates_presence_of :first_name, :last_name, :email
end
class PhoneNumber < ActiveRecord::Base
attr_protected :id
belongs_to :telephone, :polymorphic => true
end
</code></pre>
<p><strong>View</strong></p>
<pre><code><% form_for @person, :builder => CustomFormBuilder do |f| %>
<%= f.error_messages %>
<%= f.text_field :first_name %>
<%= f.text_field :last_name %>
<% fields_for "person[address]", @person.address, :builder => CustomFormBuilder do |ff| %>
<%= ff.text_field :address_1 %>
<%= ff.text_field :address_2 %>
<%= ff.text_field :city %>
<%= ff.text_field :state %>
<%= ff.text_field :zip %>
<% end %>
<h2>Phone Numbers</h2>
<% @person.phone_numbers.each do |phone_number| %>
<% fields_for "person[phone_numbers][]", phone_number, :builder => CustomFormBuilder do |ff| %>
<%= ff.text_field :description %>
<%= ff.text_field :number %>
<%= ff.text_field :extension %>
<% end %>
<% end %>
<%= f.text_field :email %>
<%= f.submit 'Create' %>
<% end %>
</code></pre>
<p><strong>Controller</strong></p>
<pre><code>def new
@person = Person.new
@person.build_address
@person.phone_numbers.build
respond_to { |format| format.html }
end
def create
@person = Person.new(params[:person])
respond_to do |format|
if @person.save
flash[:notice] = "#{@person.name} was successfully created."
format.html { redirect_to(@person) }
else
format.html { render :action => 'new' }
end
end
end
</code></pre>
<p>I have verified that a phone_numbers= method is being created, but the post still causes:</p>
<pre><code>PhoneNumber(#69088460) expected, got HashWithIndifferentAccess(#32603050)
RAILS_ROOT: H:/projects/test_project
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/associations/association_proxy.rb:263:in `raise_on_type_mismatch'
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/associations/association_collection.rb:319:in `replace'
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/associations/association_collection.rb:319:in `each'
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/associations/association_collection.rb:319:in `replace'
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/associations.rb:1290:in `phone_numbers='
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:2740:in `send'
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:2740:in `attributes='
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:2736:in `each'
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:2736:in `attributes='
C:/Ruby/lib/ruby/gems/1.8/gems/activerecord-2.3.3/lib/active_record/base.rb:2434:in `initialize'
H:/projects/salesguide/app/controllers/accounts_controller.rb:46:in `new'
H:/projects/test_project/app/controllers/accounts_controller.rb:46:in `create'
</code></pre>
<p>I can get this to work by manually writing the phone_numbers= method, but this would cause a tremendous duplication of effort, I would much rather learn how to do this right. Can anybody see what I'm doing wrong?</p>
http://stackoverflow.com/questions/1490713/nomethoderror-with-collectionselect0NoMethodError with collection_selectAdam Lassek2009-09-29T05:32:00Z2009-09-29T05:32:37Z
<p>I'm building a form for a <code>:has_many :through</code> relationship:</p>
<pre><code>class Account < ActiveRecord::Base
has_many :employments
has_many :people, :through => :employments
accepts_nested_attributes_for :employments
end
class Person < ActiveRecord::Base
has_many :employments
has_many :accounts, :through => :employments
end
class Employment < ActiveRecord::Base
belongs_to :account
belongs_to :person
end
</code></pre>
<p>The <code>Employment</code> model contains the fields <code>:account_id</code> and <code>:person_id</code>.</p>
<p>Within the account form, I'm adding:</p>
<pre><code><% fields_for 'account[employments_attributes][]', @account.employments do |e| %>
<%= e.hidden_field :account_id, :value => @account.id %>
<%= e.collection_select :person_id, Person.all, :id, :name %>
<% end %>
</code></pre>
<p><code>collection_select</code>, or <code>select</code> as well, in any permutation I give them fail with a NoMethodError exception:</p>
<pre><code>undefined method `person_id' for #<Array:0x82e7db0>
</code></pre>
<p>It's as if the <code>person_id</code> field doesn't exist and yet I can call the create method with <code>:account_id</code> and <code>:person_id</code> perfectly fine.</p>
http://stackoverflow.com/questions/1490713/nomethoderror-with-collectionselect/1490715#14907151Answer by Adam Lassek for NoMethodError with collection_selectAdam Lassek2009-09-29T05:32:37Z2009-09-29T05:32:37Z<p>Answering my own question. As I'm training my brain to think the Rails way, I've been running into situations like these where I'm simply thinking about the problem wrong.</p>
<p><code>forms_for</code> needs to act on an already-instantiated object from the controller. Rather than this being a form to <em>create</em> the employment object, it's filling in the fields in an empty one. So, I needed to create an empty employment object in the <code>edit</code> action:</p>
<pre><code>@account.employments.build
</code></pre>
<p>encapsulated with the proper logic so it only gets created when I need it.</p>
http://stackoverflow.com/questions/407314/how-do-i-get-a-real-name-stored-in-active-directory-from-an-username-with-c/407401#4074013Answer by Adam Lassek for How do I get a real name stored in Active Directory from an username with C#?Adam Lassek2009-01-02T16:55:14Z2009-09-10T21:57:57Z<p>Here's the code I use, taken from my authentication class:</p>
<pre><code>string[] strUserName = username.Split("\\".ToCharArray());
using (var entry = new DirectoryEntry("LDAP://" + ADServer, ADServiceDomain + "\\" + ADServiceAccount, ADServicePassword))
using (var ds = new DirectorySearcher(entry, "sAMAccountName=" + strUserName[1])) {
ds.SearchScope = SearchScope.Subtree;
SearchResult result = ds.FindOne();
string fullname = result.Properties["displayName"][0].ToString();
}
</code></pre>
<p><hr /></p>
<p>System.DirectoryServices sucks. As you can see, it takes a ridiculous amount of code to do even the most basic things. I'd like to see a user authentication method that didn't require using exceptions for flow control.</p>
http://stackoverflow.com/questions/1376117/rails-plugins/1376142#13761421Answer by Adam Lassek for Rails Plugins Adam Lassek2009-09-03T21:45:46Z2009-09-03T21:45:46Z<p>You can do that with <a href="http://rails-engines.org/" rel="nofollow">Rails Engines</a>.</p>
http://stackoverflow.com/questions/47740/what-are-some-good-linq-resouces/58272#582722Answer by Adam Lassek for What are some good LINQ resouces?Adam Lassek2008-09-12T03:46:54Z2009-08-11T19:15:09Z<p><a href="http://weblogs.asp.net/scottgu/archive/tags/LINQ/default.aspx" rel="nofollow">ScottGu's blog</a> has some great articles about using LINQ. He does some of the best walkthroughs of new .Net technologies.</p>
<p>Here's the series on LINQ to SQL he did:</p>
<ul>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx" rel="nofollow">Part 1: Introduction to LINQ to SQL</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/05/29/linq-to-sql-part-2-defining-our-data-model-classes.aspx" rel="nofollow">Part 2: Defining our Data Model Classes</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/06/29/linq-to-sql-part-3-querying-our-database.aspx" rel="nofollow">Part 3: Querying our Database</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/07/11/linq-to-sql-part-4-updating-our-database.aspx" rel="nofollow">Part 4: Updating our Database</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/07/16/linq-to-sql-part-5-binding-ui-using-the-asp-linqdatasource-control.aspx" rel="nofollow">Part 5: Binding UI using the ASP:LinqDataSource Control</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/08/16/linq-to-sql-part-6-retrieving-data-using-stored-procedures.aspx" rel="nofollow">Part 6: Retrieving Data Using Stored Procedures</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/08/23/linq-to-sql-part-7-updating-our-database-using-stored-procedures.aspx" rel="nofollow">Part 7: Updating our Database using Stored Procedures</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/08/27/linq-to-sql-part-8-executing-custom-sql-expressions.aspx" rel="nofollow">Part 8: Executing Custom SQL Expressions</a></li>
<li><a href="http://weblogs.asp.net/scottgu/archive/2007/09/07/linq-to-sql-part-9-using-a-custom-linq-expression-with-the-lt-asp-linqdatasource-gt-control.aspx" rel="nofollow">Part 9: Using a Custom LINQ Expression with the <code><asp:LinqDatasource></code> control</a></li>
</ul>
http://stackoverflow.com/questions/1208026/alternative-to-subversion-tortoisesvn-on-win-xp/1208264#12082640Answer by Adam Lassek for Alternative to subversion / TortoiseSVN on Win xp?Adam Lassek2009-07-30T18:00:12Z2009-07-30T18:00:12Z<p><a href="http://code.google.com/p/gitextensions/" rel="nofollow">Git Extenions</a> looks like a better way of using Git in Windows than the alternatives. It even comes with a Visual Studio plugin.</p>
http://stackoverflow.com/questions/1208182/update-twitter-status-in-c/1208212#12082122Answer by Adam Lassek for Update Twitter Status in C#Adam Lassek2009-07-30T17:51:10Z2009-07-30T17:51:10Z<p>Another Twitter library I have used sucessfully is <a href="http://tweetsharp.com/" rel="nofollow">TweetSharp</a>, which provides a fluent API.</p>
<p>The source code is available at <a href="http://code.google.com/p/tweetsharp/" rel="nofollow">Google code</a>. Why don't you want to use a dll? That is by far the easiest way to include a library in a project.</p>
http://stackoverflow.com/questions/1204189/learning-ruby-on-rails-with-pragmatic-book/1208132#12081321Answer by Adam Lassek for Learning Ruby on Rails with Pragmatic bookAdam Lassek2009-07-30T17:34:38Z2009-07-30T17:34:38Z<p>I would highly recommend supplementing the books with screencasts. <a href="http://workingwithrails.com/person/6491-ryan-bates" rel="nofollow">Ryan Bates</a> in particular has done an enormous amount of Rails screencasts at <a href="http://railscasts.com/" rel="nofollow">Railscasts</a>, which are freely available. He has also done some paid screencasts for the <a href="http://pragprog.com/screencasts" rel="nofollow">Pragmatic Programmers</a> site which are much more in-depth, and very helpful.</p>
<p>Creating multi-model forms was a bit of an early sticking point for me, and Ryan's <a href="http://pragprog.com/screencasts/v-rbforms/mastering-rails-forms" rel="nofollow">Pragmatic Screencast series on forms</a> was very helpful. I would also recommend the <a href="http://pragprog.com/screencasts/v-rbar/everyday-active-record" rel="nofollow">ActiveRecord series</a>.</p>
http://stackoverflow.com/questions/496195/how-do-i-get-linq-to-sql-to-recognize-the-result-set-of-a-dynamic-stored-procedur2How do I get Linq to SQL to recognize the result set of a dynamic Stored Procedure?Adam Lassek2009-01-30T16:38:51Z2009-07-23T22:47:26Z
<p>I'm using Linq-to-SQL with a SQL Server backend (of course) as an ORM for a project. I need to get the result set from a stored procedure that returns from a dynamically-created table. Here's what the proc looks like:</p>
<pre><code>CREATE procedure [RetailAdmin].[TitleSearch] (
@isbn varchar(50), @author varchar(50),
@title varchar(50))
as
declare @L_isbn varchar(50)
declare @l_author varchar(50)
declare @l_title varchar(50)
declare @sql nvarchar(4000)
set @L_isbn = rtrim(ltrim(@isbn))
set @l_author = rtrim(ltrim(@author))
set @l_title = rtrim(ltrim(@title))
CREATE TABLE #mytemp(
[storeid] int not NULL,
[Author] [varchar](100) NULL,
[Title] [varchar](400) NULL,
[ISBN] [varchar](50) NULL,
[Imprint] [varchar](255) NULL,
[Edition] [varchar](255) NULL,
[Copyright] [varchar](100) NULL,
[stockonhand] [int] NULL
)
set @sql = 'select a.storeid, Author,Title, thirteendigitisbn ISBN,
Imprint,Edition,Copyright ,b.stockonhand from ods.items a join ods.inventory b on
a.itemkey = b.itemkey where b.stockonhand <> 0 '
if len(@l_author) > 0
set @sql = @sql + ' and author like ''%'+@L_author+'%'''
if len(@l_title) > 0
set @sql = @sql + ' and title like ''%'+@l_title+'%'''
if len(@L_isbn) > 0
set @sql = @sql + ' and thirteendigitisbn like ''%'+@L_isbn+'%'''
print @sql
if len(@l_author) <> 0 or len(@l_title) <> 0 or len(@L_isbn) <> 0
begin
insert into #mytemp
EXECUTE sp_executesql @sql
end
select * from #mytemp
drop table #mytemp
</code></pre>
<p>I didn't write this procedure, but may be able to influence a change if there's a really serious problem.</p>
<p>My present problem is that when I add this procedure to my model, the designer generates this function:</p>
<pre><code>[Function(Name="RetailAdmin.TitleSearch")]
public int TitleSearch([Parameter(DbType="VarChar(50)")] string isbn,
[Parameter(DbType="VarChar(50)")] string author,
[Parameter(DbType="VarChar(50)")] string title)
{
IExecuteResult result = this.ExecuteMethodCall(this,
((MethodInfo)(MethodInfo.GetCurrentMethod())), isbn, author, title);
return ((int)(result.ReturnValue));
}
</code></pre>
<p>which doesn't look anything like the result set I get when I run the proc manually:</p>
<p><img src="http://lh5.ggpht.com/_g6k7SWc-6HY/SYMrST6oPaI/AAAAAAAAAE8/KD6-NFPxcN0/s400/storedproc.jpeg" alt="Result Set" title="" /></p>
<p>Can anybody tell me what's going wrong here?</p>
<p>This is basically the same problem as <a href="http://stackoverflow.com/questions/404186/problem-with-the-return-type-of-a-stored-procedure">this question</a> but due to the poor phrasing from the OP it was never really answered.</p>
<p><hr /></p>
<p>Thanks Marc for your reply. I will see about making the changes you suggested.</p>
<p>The problem was the temp table. Linq to Sql just doesn't know what to do with them. This was particularly difficult to diagnose, because Visual Studio caches information about stored procs, so when it initially failed to find a result set it set the return as a default integer type and didn't update when I made changes to the stored proc. Getting VS to recognize a change requires you to:</p>
<ul>
<li>Delete proc from the dbml</li>
<li>delete the server connection from Server Explorer</li>
<li>save the dbml to force a recompile</li>
<li>close the project and restart VS</li>
<li>recreate the server connection and import the proc</li>
</ul>
<p>You might not have to do every one of those steps, but that's what worked for me. What you need to do, if you must use a temp table, is to create a barebones proc that simply returns the correct schema, and then alter it to do what you want after you've imported it into the OR Designer.</p>
http://stackoverflow.com/questions/187482/how-can-i-use-the-button-tag-with-asp-net6How can I use the button tag with ASP.NET?Adam Lassek2008-10-09T14:20:28Z2009-07-23T12:56:32Z
<p>I'd like to use the newer <code><button></code> tag in an ASP.NET website which, among other things, allows CSS-styled text and embedding a graphic inside the button. The asp:Button control renders as <code><input type="button"></code>, is there any way to make a preexisting control render to <code><button></code>?</p>
<p>From what I've read there is an incompatibility with IE posting the button's markup instead of the value attribute when the button is located within a <code><form></code>, but in ASP.NET it will be using the onclick event to fire __doPostBack anyway, so I don't think that this would be a problem.</p>
<p>Are there any reasons why I shouldn't use this? If not, how would you go about supporting it with asp:Button, or a new server control based on it? I would prefer to not write my own server control if that can be avoided.</p>
<p><hr /></p>
<p>At first the <code><button runat="server"></code> solution worked, but I immediately ran into a situation where it needs to have a CommandName property, which the HtmlButton control doesn't have. It looks like I'm going to need to create a control inherited from Button after all. </p>
<p>What do I need to do in order to override the render method and make it render what I want?</p>
<p><hr /></p>
<p><strong>UPDATE</strong></p>
<p>DanHerbert's reply has made me interested in finding a solution to this again, so I've spent some more time working on it. </p>
<p>First, there's a far easier way of overloading the TagName:</p>
<pre><code>public ModernButton() : base(HtmlTextWriterTag.Button)
{
}
</code></pre>
<p>The problem with Dan's solution as it stands is the innerhtml of the tag is placed into the value property, which causes a validation error on postback. A related problem is, even if you render the value property correctly, IE's braindead implementation of the <code><button></code> tag posts the innerhtml instead of the value anyway. So, any implementation of this needs to override the AddAttributesToRender method in order to correctly render the value property, and also provide some sort of workaround for IE so it doesn't completely screw up the postback.</p>
<p>The IE problem may be insurmountable if you want to take advantage of the CommandName/CommandArgument properties for a databound control. Hopefully someone can suggest a workaround for this.</p>
<p>I have made progress on the rendering:</p>
<p><a href="http://gist.github.com/69841" rel="nofollow">ModernButton.cs</a></p>
<p>This renders as a proper html <code><button></code> with the correct value, but it doesn't work with the ASP.Net PostBack system. I've written some of what I need to provide the <code>Command</code> event, but it doesn't fire.</p>
<p>When inspecting this button side-by-side with a regular asp:Button, they look the same other than the differences I need. So I'm not sure how ASP.Net is wiring up the <code>Command</code> event in this case.</p>
<p>An additional problem is, nested server controls aren't rendered (as you can see with the ParseChildren(false) attribute). It's pretty easy to inject literal html text into the control during render, but how do you allow support for nested server controls?</p>
http://stackoverflow.com/questions/35232/would-building-an-application-using-a-sql-server-database-file-mdf-be-a-terribl1Would building an application using a Sql Server Database File (mdf) be a terrible idea?Adam Lassek2008-08-29T20:26:39Z2009-07-21T05:21:03Z
<p>I'm working on a side project that would be a simple web application to maintain a list of classes and their upcoming schedules.</p>
<p>I would really like to use Linq to SQL for this project, but unfortunately the server environment I'm developing for only has MySql available. I've dabbled briefly with Subsonic but it just doesn't get the job done.</p>
<p>The database requirements for this application aren't that great, though, so I'm curious if using an MDF file in App_Data would be a workable solution. Otherwise, it appears I'm going to have to hand-code sql queries which I want to avoid at all costs.</p>
http://stackoverflow.com/questions/35232/would-building-an-application-using-a-sql-server-database-file-mdf-be-a-terribl/1157405#11574051Answer by Adam Lassek for Would building an application using a Sql Server Database File (mdf) be a terrible idea?Adam Lassek2009-07-21T05:12:15Z2009-07-21T05:21:03Z<p>I've long since completed the project which prompted this question, but recently I've had another project come along with very minor data requirements, so I spent some more time experimenting with this.</p>
<p>I had assumed that Sql Server Express required licensing fees to deploy, but this is not in fact the case. According to Microsoft's website, you are free to use it with certain restrictions:</p>
<ul>
<li>Maximum database size: 4 GB</li>
<li>Maximum memory used: 1 GB</li>
<li>Maximum CPUs used: 1 (complete procs, not cores)</li>
</ul>
<p>Sql Server Compact is a bad idea for web applications because it requires a hack to make it work, and it isn't built for the concurrent access you'd need for the web. But if your application can fit within the modest limitations of Sql Server Express, it works pretty well. And since it speaks regular T-SQL like its larger siblings, you can use Linq to SQL with it.</p>
<p>I hear that <a href="http://twitter.com/migueldeicaza/status/2368465000" rel="nofollow">Linq to Sql support is now in the Mono trunk</a> for the 2.6 release, so L2S' tight-coupling to Sql Server will likely be a moot point in the near future. I will either end up porting my code to use Mono's superior Linq to Sql implementation on the db of my choice, or go <a href="http://subsonicproject.com/" rel="nofollow">another route entirely</a> (SubSonic has improved by leaps and bounds since I last tried it). But for the time being, Sql Server Express is a valid choice for very small database-driven apps.</p>
http://stackoverflow.com/questions/1129172/how-to-find-max-date/1129267#11292672Answer by Adam Lassek for How to find Max DateAdam Lassek2009-07-15T03:34:58Z2009-07-15T03:34:58Z<p>The DateTime class stores points in time numerically as a 64-bit integer value called a tick. <strong>A single tick represents one hundred nanoseconds or one ten-millionth of a second. <a href="http://msdn.microsoft.com/en-us/library/system.datetime.ticks.aspx#remarksToggle" rel="nofollow">There are 10,000 ticks in a millisecond.</a></strong></p>
<p>Since <code>DateTime</code> is simply a numeric value, you can easily compare them as you would any two numbers using the <code><</code> or <code>></code> operators.</p>
http://stackoverflow.com/questions/1110678/m-at-the-end-of-every-line-in-vim/1110693#11106939Answer by Adam Lassek for ^M at the end of every line in vimAdam Lassek2009-07-10T16:51:17Z2009-07-10T16:51:17Z<p>There's a program called <a href="http://linux.about.com/od/commands/l/blcmdl1%5Fdos2uni.htm" rel="nofollow">dos2unix</a> that should strip those for you. Windows uses different line-ending characters which is why that happens.</p>
http://stackoverflow.com/questions/693928/how-replacecreate-an-enum-field-on-rails-2-0-migrations/1106810#11068100Answer by Adam Lassek for how (replace|create) an enum field on rails 2.0 migrations?Adam Lassek2009-07-09T22:40:20Z2009-07-09T22:40:20Z<p>You can manually specify the type by using the <code>t.column</code> method instead. Rails will interpret this as a string column, and you can simply add a validator to the model like Pavel suggested:</p>
<pre><code>class CreatePayments < ActiveRecord::Migration
def self.up
create_table :payments do |t|
t.string :concept
t.integer :user_id
t.text :notes
t.column :status, "ENUM('accepted', 'cancelled', 'pending')"
t.timestamps
end
end
def self.down
drop_table :payments
end
end
class Payment < ActiveRecord::Base
validates_inclusion_of :status, :in => %w(accepted cancelled pending)
end
</code></pre>
http://stackoverflow.com/questions/303287/can-a-generic-method-handle-both-reference-and-nullable-value-types5Can a Generic Method handle both Reference and Nullable Value types?Adam Lassek2008-11-19T20:40:28Z2009-06-26T00:00:45Z
<p>I have a series of Extension methods to help with null-checking on IDataRecord objects, which I'm currently implementing like this:</p>
<pre><code>public static int? GetNullableInt32(this IDataRecord dr, int ordinal)
{
int? nullInt = null;
return dr.IsDBNull(ordinal) ? nullInt : dr.GetInt32(ordinal);
}
public static int? GetNullableInt32(this IDataRecord dr, string fieldname)
{
int ordinal = dr.GetOrdinal(fieldname);
return dr.GetNullableInt32(ordinal);
}
</code></pre>
<p>and so on, for each type I need to deal with. </p>
<p>I'd like to reimplement these as a generic method, partly to reduce redundancy and partly to learn how to write generic methods in general. </p>
<p>I've written this:</p>
<pre><code>public static Nullable<T> GetNullable<T>(this IDataRecord dr, int ordinal)
{
Nullable<T> nullValue = null;
return dr.IsDBNull(ordinal) ? nullValue : (Nullable<T>) dr.GetValue(ordinal);
}
</code></pre>
<p>which works as long as T is a value type, but if T is a reference type it won't.</p>
<p>This method would need to return either a Nullable type if T is a value type, and default(T) otherwise. How would I implement this behavior?</p>
http://stackoverflow.com/questions/1040979/is-there-anything-wrong-with-using-var-to-declare-collections-in-linq-queries/1041034#10410343Answer by Adam Lassek for Is there anything wrong with using var to declare collections in LINQ queries?Adam Lassek2009-06-24T21:09:47Z2009-06-24T21:09:47Z<p>You won't always know what the type of that <code>IEnumerable</code> is, that depends entirely on the contents of the Select call. If you're returning declared types, then using var is optional.</p>
<p>Var was created because many times when using LINQ you will create anonymous types, which can't be declared.</p>
http://stackoverflow.com/questions/921970/how-do-i-create-a-generic-datacontext-factory0How do I create a generic DataContext factory?Adam Lassek2009-05-28T16:50:55Z2009-05-28T16:55:24Z
<p>I'm building a generic <code>Repository<T></code> class that supports Linq to SQL, and I'd like to use a factory pattern for the DataContext, because currently I have to pass the correct context to the constructor.</p>
<p>Does anybody know how to determine the correct DataContext type for <code>T</code>, where <code>T</code> is a Linq to Sql Table?</p>
http://stackoverflow.com/questions/898463/fire-event-each-time-a-dropdownlist-item-is-selected-with-jquery/898861#8988611Answer by Adam Lassek for Fire event each time a DropDownList item is selected with jQueryAdam Lassek2009-05-22T16:51:15Z2009-05-22T16:51:15Z<p>Simply wireup click event handlers to the enclosed option controls instead of the select:</p>
<pre><code>$('#dropdownid option').click(function() {......});
</code></pre>
<p>This will only fire when you select an option from the dropdown, regardless of whether it changes.</p>
http://stackoverflow.com/questions/885213/in-short-what-are-the-advantages-of-git-and-mercurial-over-subversion/885474#8854740Answer by Adam Lassek for In short, what are the advantages of git and mercurial over subversion?Adam Lassek2009-05-19T23:08:36Z2009-05-19T23:08:36Z<p>They conceptually organize revisions as changesets which allow you to very easily branch/merge your code. Merging a branch in SVN is an excruciatingly painful experience.</p>
http://stackoverflow.com/questions/42212/how-can-i-use-linq-with-a-mysql-database-on-mono/42299#422994Answer by Adam Lassek for How can I use Linq with a MySql database on Mono?Adam Lassek2008-09-03T18:53:57Z2009-05-15T21:12:51Z<p>The only (free) linq provider for MySql is <a href="http://code2code.net/DB%5FLinq/" rel="nofollow">DbLinq</a>, and I believe it is a long way from production-ready.</p>
<p>There is also <a href="http://www.devart.com/mysqlnet/" rel="nofollow">MyDirect.Net</a> which is commercial, but I have heard mixed reviews of it's capability.</p>
<p>I've read that MySql will be implementing the Linq to Entities API for the 5.3 version of the .net connector, but I don't know if there's even a timeline for that. In fact, MySql has been totally silent about Entity Framework support for months.</p>
<p><hr /></p>
<p>Addendum: The latest release of the MySql Connector/Net 6.0 has support for the EF according to the release notes. I have no idea how stable/useful this is, so I'd love to hear from anybody who have tried it.</p>
http://stackoverflow.com/questions/517956/is-it-possible-to-use-output-parameters-with-executequeryt1Is it possible to use output parameters with ExecuteQuery<T>?Adam Lassek2009-02-05T21:16:08Z2009-04-23T10:52:32Z
<p>Normally, when you want to call a stored procedure directly through Linq to Sql, you can use the ExecuteQuery method:</p>
<pre><code>result = dc.ExecuteQuery<MyTable>("Exec myStoredProcedure");
</code></pre>
<p>And if you need to call it with parameters, you can add them through string substitution:</p>
<pre><code>string query = "Exec myStoredProcedure ";
for (int i = 0; i < parameters.Count - 1; i++) {
query += " {" + i + "},";
}
query = query.TrimEnd(',');
result = dc.ExecuteQuery<MyTable>(query, parameters);
</code></pre>
<p>But what if one of the parameters is an output variable? Is it possible to get the value back after the procedure has been run?</p>
http://stackoverflow.com/questions/756750/swap-the-values-of-two-variables-without-using-third-variable/757526#7575261Answer by Adam Lassek for Swap the values of two variables without using third variableAdam Lassek2009-04-16T18:46:38Z2009-04-16T18:46:38Z<p><strong>Intel Assembly</strong></p>
<p>Assuming the variables a, b are defined in .data:</p>
<pre><code>mov eax, a
xchg b, eax
mov a, eax
</code></pre>
http://stackoverflow.com/questions/756993/stop-linq-to-sql-from-renaming-properties-of-the-datacontext-after-i-rename-them/757031#7570312Answer by Adam Lassek for Stop Linq To Sql from Renaming properties of the DataContext after I rename themAdam Lassek2009-04-16T16:49:07Z2009-04-16T18:09:08Z<p>When you make a change to the data model dbml file, the Linq to SQL classes are generated completely from scratch. Any modifications you make to the class files will be overwritten.</p>
<p>Changing the pluralization rules would have to be done by changing the code generation, but I do not know if this is possible.</p>
<p><hr /></p>
<p>You can change the generated name by right-clicking the table in the dbml designer window and selecting properties. There is a field called 'name' with which you should be able to define a custom name.</p>
<p>Also: this is not directly relevant to this particular issue, but if you want to add modifications to the generated classes, they are defined as partial classes. So you could add methods to the classes by creating a separate partial class.</p>
http://stackoverflow.com/questions/1767662/why-is-this-render-partial-line-iterating-my-collection-twice/1767992#1767992Comment by Adam Lassek on Why is this render :partial line iterating my collection twice?Adam Lassek2009-11-20T21:07:32Z2009-11-20T21:07:32ZI get <code>undefined local variable</code> when I try that. How do I access the properties?http://stackoverflow.com/questions/1767662/why-is-this-render-partial-line-iterating-my-collection-twice/1767992#1767992Comment by Adam Lassek on Why is this render :partial line iterating my collection twice?Adam Lassek2009-11-20T18:29:24Z2009-11-20T18:29:24ZRather than just form fields, I want to display the existing employment records with only certain fields editable, the delete field in particular. Is it possible to display fields as plain html inside <code>field_for</code>? I was using <code>render :partial</code> because that gave me a local variable for each record.http://stackoverflow.com/questions/1767662/why-is-this-render-partial-line-iterating-my-collection-twice/1767992#1767992Comment by Adam Lassek on Why is this render :partial line iterating my collection twice?Adam Lassek2009-11-20T17:26:28Z2009-11-20T17:26:28ZI'm already using <code>accepts_nested_attributes_for</code> in there, sorry I forgot to include it in my example. But when I remove the <code>:collection</code> parameter, it tries to evaluate <code>nil.person</code> in the partial.http://stackoverflow.com/questions/1767662/why-is-this-render-partial-line-iterating-my-collection-twice/1767681#1767681Comment by Adam Lassek on Why is this render :partial line iterating my collection twice?Adam Lassek2009-11-20T01:04:36Z2009-11-20T01:04:36Zfields_for is an iterator? I though it just changes the form builder's name generation.http://stackoverflow.com/questions/1704142/unobtrusive-dynamic-form-fields-in-rails-with-jquery/1705158#1705158Comment by Adam Lassek on Unobtrusive dynamic form fields in Rails with jQueryAdam Lassek2009-11-10T05:44:42Z2009-11-10T05:44:42ZThat's very helpful, thank you. Could you post an example of how you create new form fields?http://stackoverflow.com/questions/1704142/unobtrusive-dynamic-form-fields-in-rails-with-jqueryComment by Adam Lassek on Unobtrusive dynamic form fields in Rails with jQueryAdam Lassek2009-11-10T00:10:06Z2009-11-10T00:10:06ZI need to be able to support nested forms, but I'm trying to grasp the basics right now. I have jRails installed, but I'm not using it; like I said I want to do it the unobtrusive way, and I'd rather not have to learn another DSL when I'm perfectly good at javascript.http://stackoverflow.com/questions/1419397/rubyodbc-cannot-allocate-sqlhenv/1632251#1632251Comment by Adam Lassek on RubyODBC Cannot allocate SQLHENVAdam Lassek2009-11-04T20:15:06Z2009-11-04T20:15:06ZThank you, that finally solves the issues I've been having. Must be a Karmic-specific bug.http://stackoverflow.com/questions/1634822/is-this-a-valid-ruby-syntax/1634902#1634902Comment by Adam Lassek on is this a valid ruby syntax ?Adam Lassek2009-10-28T03:15:45Z2009-10-28T03:15:45ZYes, it would be <code>step =~ /apples|banana|cheese/i</code>http://stackoverflow.com/questions/1615988/associating-two-records-after-create-in-rails/1616037#1616037Comment by Adam Lassek on Associating two records after create in RailsAdam Lassek2009-10-23T22:30:00Z2009-10-23T22:30:00ZYeah, that's what I'm doing if both are created at the same time, but if one of them already exists, this won't work.http://stackoverflow.com/questions/238610/secrets-for-burning-the-midnight-oil/239175#239175Comment by Adam Lassek on Secrets for burning the midnight oilAdam Lassek2009-09-25T19:52:33Z2009-09-25T19:52:33Z"Coffee naps" are an interesting phenomenon. Specifically, you should nap for no more or less than 30 mins or else the effect is diminished from what I've read.http://stackoverflow.com/questions/1441547/using-rails-models-with-acceptsnestedattributesfor/1441633#1441633Comment by Adam Lassek on Using Rails models with accepts_nested_attributes_forAdam Lassek2009-09-17T22:42:35Z2009-09-17T22:42:35ZI can't believe that with all the documentation I've looked through, that wasn't pointed out more clearly. Thanks.http://stackoverflow.com/questions/92592/learning-c-in-mono/92635#92635Comment by Adam Lassek on Learning C# in MonoAdam Lassek2009-09-16T17:31:22Z2009-09-16T17:31:22ZOSX support has advanced significantly since this post, Monodevelop is now officially released for the platform, and Banshee for OSX is in beta I believe.http://stackoverflow.com/questions/407314/how-do-i-get-a-real-name-stored-in-active-directory-from-an-username-with-c/407401#407401Comment by Adam Lassek on How do I get a real name stored in Active Directory from an username with C#?Adam Lassek2009-09-10T21:58:16Z2009-09-10T21:58:16ZGood to know. Updated with using statements.http://stackoverflow.com/questions/47740/what-are-some-good-linq-resouces/58272#58272Comment by Adam Lassek on What are some good LINQ resouces?Adam Lassek2009-08-11T19:17:15Z2009-08-11T19:17:15ZSure, see above.http://stackoverflow.com/questions/1208277/jquery-fadeout-an-image-when-clicking-an-asp-net-imagebutton/1208289#1208289Comment by Adam Lassek on jQuery: fadeout an image when clicking an ASP.NET ImageButton Adam Lassek2009-07-30T18:54:25Z2009-07-30T18:54:25ZHmm, you're right the click event would have to be unbound first. My bad.