An open API service indexing awesome lists of open source software.

https://github.com/Dixin/EntityFramework.Functions

EntityFramework.Functions library implements Entity Framework code first support for stored procedures (with single result type, multiple result types, output parameter), table-valued functions (returning entity type, complex type), scalar-valued functions (composable, non-composable), aggregate functions, built-in functions, niladic functions, and model defined functions.
https://github.com/Dixin/EntityFramework.Functions

Last synced: 7 months ago
JSON representation

EntityFramework.Functions library implements Entity Framework code first support for stored procedures (with single result type, multiple result types, output parameter), table-valued functions (returning entity type, complex type), scalar-valued functions (composable, non-composable), aggregate functions, built-in functions, niladic functions, and model defined functions.

Awesome Lists containing this project

README

          

EntityFramework.Functions


Build status

EntityFramework.Functions library implements Entity Framework code first support for:




  • Stored procedures, with:

    • single result type

    • multiple result types

    • output parameter




  • Table-valued functions, returning

    • entity type

    • complex type




  • Scalar-valued functions

    • composable

    • non-composable



  • Aggregate functions

  • Built-in functions

  • Niladic functions

  • Model defined functions


EntityFramework.Functions library works on .NET Standard with Entity Framework 6.4.0. It also works on .NET 4.0, .NET 4.5, .NET 4.6, .NET 4.7, .NET 4.8 with Entity Framework 6.1.0 and later. Entity Framework is the only dependency of this library.


It can be installed through Nuget:



dotnet add package EntityFramework.Functions



Or:



Install-Package EntityFramework.Functions -DependencyVersion Highest



See: