Search code examples
c#repository-patternasp.net-4.0plinq

Repository pattern with PLinq


I am fairly new to Plinq and Repo pattern. I nee some references and guidlines from you for implementation of Repository pattern using dbml, PLinq in fx 4.0


Solution

  • Repository pattern provides you with abstraction over the data storage. PLINQ with repository pattern will work if the underlined storage is (source):

    • (in-memory) T[], List<T>, or any other kind of IEnumerable<T>
    • XML documents loaded using the System.Xml.Linq APIs

    It will not work with: