Category: LINQ

webTiger Logo Wide
  • Implementing the Respository Pattern with Entity Framework and LINQ Expressions

    .NET LINQ

    When working with layers of abstraction, especially in modern design structures like Clean Architecture, it can easily become complicated getting a simple database query from the UI to the physcial database provider being queried due to all the abstraction and indirection. An obvious way of abstracting an application from any single underlying data provider is by implementing the Repository pattern.

    (more…)