Skip to content

Instantly share code, notes, and snippets.

@duckinator
Created April 25, 2010 01:42
Show Gist options
  • Save duckinator/378091 to your computer and use it in GitHub Desktop.
Save duckinator/378091 to your computer and use it in GitHub Desktop.
namespace Foo
{
class Bar : Controller
{
public ActionResult MyAction(int? id)
{
var ctx = new Models.MyDbContext();
return from x in ctx.MyTable where x.ID == id select x.Name;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment