StoredProcedureEFCore 0.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package StoredProcedureEFCore --version 0.1.0
NuGet\Install-Package StoredProcedureEFCore -Version 0.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StoredProcedureEFCore" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StoredProcedureEFCore --version 0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: StoredProcedureEFCore, 0.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install StoredProcedureEFCore as a Cake Addin #addin nuget:?package=StoredProcedureEFCore&version=0.1.0 // Install StoredProcedureEFCore as a Cake Tool #tool nuget:?package=StoredProcedureEFCore&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Example
List<Model> rows = null;
ctx.LoadStoredProc("dbo.ListAll")
.AddParam("limit", 300)
.AddOutParam("limitOut", out IOutParam<long> limitOut)
.Exec(r => rows = r.ToList<Model>());
long limitOutValue = limitOut.Value;
ctx.LoadStoredProc("dbo.ReturnBoolean")
.AddParam("boolean_to_return", true)
.ReturnValue(out IOutParam<bool> retParam)
.ExecNonQuery();
bool b = retParam.Value;
ctx.LoadStoredProc("dbo.ListAll")
.AddParam("limit", 1)
.ExecScalar(out long l);
API
DbContext
IStoredProcBuilder LoadStoredProc(string name)
IDataReader
List<T> ToList<T>()
Dictionary<TKey, TValue> ToDictionary<TKey, TValue>()
Dictionary<TKey, List<TValue>> ToLookup<TKey, TValue>()
HashSet<T> ToSet<T>()
List<T> Column<T>()
T First<T>()
T FirstOrDefault<T>()
T Single<T>()
IStoredProcBuilder
IStoredProcBuilder AddParam(string name, object val)
IStoredProcBuilder AddInputOutputParam<T>(string name, T val, out OutParam<T> outParam)
IStoredProcBuilder AddOutParam<T>(string name, out IOutParam<T> outParam)
IStoredProcBuilder ReturnValue<T>(out IOutParam<T> retParam)
void Exec(Action<IDataReader> action)
void ExecNonQuery()
void ExecScalar<T>(out T val)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.1 is compatible. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 1.1
- Microsoft.AspNetCore (>= 1.1.1)
- Microsoft.EntityFrameworkCore (>= 1.1.1)
- Microsoft.EntityFrameworkCore.Design (>= 1.1.1)
- Microsoft.NETCore.App (>= 1.1.2)
- System.Data.Common (>= 4.3.0)
NuGet packages (10)
Showing the top 5 NuGet packages that depend on StoredProcedureEFCore:
Package | Downloads |
---|---|
BinaryBlox.SDK
Package Description |
|
BinaryBlox.SDK.Account
Package Description |
|
BinaryBlox.SDK.Configuration
Package Description |
|
BinaryBlox.SDK.Permission
Package Description |
|
DevDiamond.AspNetCore.JqueryDataTable
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.0.5 | 469,805 | 11/15/2020 | |
1.0.4 | 85,408 | 6/16/2020 | |
1.0.3 | 1,224 | 6/15/2020 | |
1.0.2 | 11,244 | 4/10/2020 | |
1.0.1 | 14,800 | 2/13/2020 | |
1.0.0 | 8,555 | 1/14/2020 | |
0.3.15 | 18,679 | 10/30/2019 | |
0.3.14 | 5,540 | 10/22/2019 | |
0.3.13 | 1,334 | 10/17/2019 | |
0.3.12 | 1,700 | 8/9/2019 | |
0.3.11 | 16,079 | 6/1/2019 | |
0.3.10 | 22,643 | 11/15/2018 | |
0.3.9 | 9,895 | 5/4/2018 | |
0.3.8 | 2,266 | 4/21/2018 | |
0.3.7 | 1,993 | 4/3/2018 | |
0.3.6 | 2,053 | 3/16/2018 | |
0.3.5 | 1,826 | 3/16/2018 | |
0.3.4 | 2,084 | 3/2/2018 | |
0.3.3 | 2,125 | 2/1/2018 | |
0.3.2 | 1,968 | 1/19/2018 | |
0.3.1 | 1,984 | 1/8/2018 | |
0.3.0 | 1,988 | 1/8/2018 | |
0.2.0 | 2,102 | 12/29/2017 | |
0.1.1 | 2,077 | 12/28/2017 | |
0.1.0 | 1,984 | 12/26/2017 |