StaTypPocoQueries.PetaPoco 1.5.8

dotnet add package StaTypPocoQueries.PetaPoco --version 1.5.8
NuGet\Install-Package StaTypPocoQueries.PetaPoco -Version 1.5.8
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="StaTypPocoQueries.PetaPoco" Version="1.5.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StaTypPocoQueries.PetaPoco --version 1.5.8
#r "nuget: StaTypPocoQueries.PetaPoco, 1.5.8"
#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 StaTypPocoQueries.PetaPoco as a Cake Addin
#addin nuget:?package=StaTypPocoQueries.PetaPoco&version=1.5.8

// Install StaTypPocoQueries.PetaPoco as a Cake Tool
#tool nuget:?package=StaTypPocoQueries.PetaPoco&version=1.5.8

Icon

StaTypPocoQueries.PetaPoco NuGet CI

PetaPoco bindings for StaTypPocoQueries, allowing you to use some simple, strongly typed, Intellisensed LINQ expressions in your queries.

Database extension methods are provided for Query(), Fetch(), Page(), SkipTake(), Single(), SingleOrDefault(), First(), FirstOrDefault(), and Delete(), essentially letting you use an expression in place of a hand-written WHERE clause. Column names are escaped using the DatabaseProvider for the Database.

Because StaTypPocoQueries.Core includes support for F# quotations, bringing FSharp.Core along for the ride, this library supports those as well.

Usage

These examples assume that Database.EnableAutoSelect == true, so that the SELECT (or DELETE) portion of the SQL command is generated for you based on your POCO class. For this reason, the library cannot be used with dynamic.

public class MyClass
{
    public int ID { get; set; }
    public string Name { get; set; }    
}

// Equivalent to db.Query<MyClass>("WHERE [ID] = @0", 4)
db.Query<MyClass>(c => c.ID == 4);

// Equivalent to db.Query<MyClass>("WHERE [ID] > @0", 8)
db.Query<MyClass>(c => c.ID > 8);

// Equivalent to db.Query<MyClass>("WHERE [Name] IS NULL")
db.Query<MyClass>(c => c.Name == null);

// Equivalent to db.Query<MyClass>("WHERE [ID] = @0 OR [ID] = @1", new [] { 1, 2 })
db.Query<MyClass>(c => c.ID == 1 || c.ID == 2);

// Equivalent to db.Query<MyClass>("WHERE [ID] = @0 AND [Name] = @1", new object[] { 10, "Bob" })
db.Query<MyClass>(c => c.ID == 10 && c.Name == "Bob");
Product 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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.8 5,250 6/9/2022
1.4.5 3,196 3/6/2021
1.4.1 351 2/27/2021
1.3.2 1,393 9/2/2020
1.2.3 1,572 11/5/2019
1.2.2 13,280 5/16/2019
1.1.1 664 12/12/2018
1.0.22 735 12/11/2018
1.0.21 640 12/11/2018

Upgrade base library to v2