Skip to content

Instantly share code, notes, and snippets.

@jbubriski
Created May 24, 2013 17:47
Show Gist options
  • Save jbubriski/5645243 to your computer and use it in GitHub Desktop.
Save jbubriski/5645243 to your computer and use it in GitHub Desktop.
SQL Command to Typed List
var sqlReader = sqlCommand.ExecuteReader();
var products = new List<Product>();
while(sqlReader.Read())
{
var product = new Product
{
ID = int.Parse(sqlReader["ID"].ToString()),
Name = sqlReader[1].ToString()
}
products.Add(product);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment