StaTypPocoQueries.PetaPoco
1.5.8
dotnet add package StaTypPocoQueries.PetaPoco --version 1.5.8
NuGet\Install-Package StaTypPocoQueries.PetaPoco -Version 1.5.8
<PackageReference Include="StaTypPocoQueries.PetaPoco" Version="1.5.8" />
paket add StaTypPocoQueries.PetaPoco --version 1.5.8
#r "nuget: StaTypPocoQueries.PetaPoco, 1.5.8"
// 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
StaTypPocoQueries.PetaPoco
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 | 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 | 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. |
-
.NETFramework 4.5
- PetaPoco.Compiled (>= 6.0.394 && < 7.0.0)
- StaTypPocoQueries.Core (>= 2.0.0 && < 3.0.0)
-
.NETStandard 2.0
- PetaPoco.Compiled (>= 6.0.394 && < 7.0.0)
- StaTypPocoQueries.Core (>= 2.0.0 && < 3.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Upgrade base library to v2