Skip to content

Instantly share code, notes, and snippets.

@whatupdave
Created May 26, 2009 01:40
Show Gist options
  • Save whatupdave/117844 to your computer and use it in GitHub Desktop.
Save whatupdave/117844 to your computer and use it in GitHub Desktop.
var migrations = from m in typeof (WebConfigMigrator).GetMethods()
where m.Name.StartsWith("Migration_")
let migrationNumber = int.Parse(Regex.Match(m.Name, @"Migration_(\d+)").Groups[1].Value)
where migrationNumber > currentVersion
orderby migrationNumber
select m;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment