Skip to content

Instantly share code, notes, and snippets.

@derans
Created March 20, 2012 05:16
Show Gist options
  • Save derans/2131603 to your computer and use it in GitHub Desktop.
Save derans/2131603 to your computer and use it in GitHub Desktop.
L2S Repository Sample Usage
public class SampleClass
{
public SampleObject GetById(int id)
{
using(var repository = new LinqToSqlRepository<SampleDataContext>())
{
var result = repository.Load<SampleDataModel>(id);
return Mapper.Map<SampleObject>(result);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment