drittich.SimpleQuery 1.0.13

There is a newer version of this package available.
See the version list below for details.
dotnet add package drittich.SimpleQuery --version 1.0.13
NuGet\Install-Package drittich.SimpleQuery -Version 1.0.13
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="drittich.SimpleQuery" Version="1.0.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add drittich.SimpleQuery --version 1.0.13
#r "nuget: drittich.SimpleQuery, 1.0.13"
#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 drittich.SimpleQuery as a Cake Addin
#addin nuget:?package=drittich.SimpleQuery&version=1.0.13

// Install drittich.SimpleQuery as a Cake Tool
#tool nuget:?package=drittich.SimpleQuery&version=1.0.13

simple-query

A library for generating a simple model layer for a SQLite database

Usage

To generate the model code, you will run the SimpleQuery.CodeGen.exe executable. You can find this in the C:\Users\[YOUR_USERNAME]]\.nuget\packages\drittich.simplequery\x.x.x\tools folder. Before doing this, create an appsettings.json file in the same folder as the executable. This file should contain the following settings:

{
	"Settings": {
		"ConnectionString": "",
		"TargetFolder": "",
		"ExcludeTables": [ ]
	}
}

Populate the connection string for your SQLite database, as well as the target folder you want the files created in. If there are any tables you do not want modeled, you can add them to the ExcludeTables list.

Make sure you reference this package in whatever project you have generated the model in.

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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.3.3 95 4/28/2024
1.3.2 78 4/26/2024
1.3.1 90 4/26/2024
1.2.1 102 3/24/2024
1.2.0 98 3/13/2024
1.1.8 107 3/10/2024
1.1.0 80 3/9/2024
1.0.18 102 3/9/2024
1.0.17 106 3/9/2024
1.0.16 104 3/7/2024
1.0.15 108 3/5/2024
1.0.14 176 3/5/2024
1.0.13 165 3/5/2024

Added method to support ad hoc WHERE clauses