Skip to content

Instantly share code, notes, and snippets.

@AlexanderByndyu
Created August 22, 2014 06:02
Show Gist options
  • Select an option

  • Save AlexanderByndyu/336125ed6bbc9427c937 to your computer and use it in GitHub Desktop.

Select an option

Save AlexanderByndyu/336125ed6bbc9427c937 to your computer and use it in GitHub Desktop.
public partial class DbContextDataContext : System.Data.Linq.DataContext, IStorage
{
...
public System.Data.Linq.Table<Author> Authors
{
get
{
return this.GetTable<Author>();
}
}
...
}
public interface IStorage
{
IEnumerable<Author> Authors();
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment