PluginSQL 1.0.2

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

// Install PluginSQL as a Cake Tool
#tool nuget:?package=PluginSQL&version=1.0.2                

// Using Plugin

using PluginSQL;

//plugin conection settings

MYSQL.Init("127.0.0.1", 3306, "root", "", "demo_core");

Class Table

[TableName("cuenta")] //Custom Table name
public class Cuenta : TableBase
{
[PrimaryKey]
public int id { set; get; }
public DateTime date_created { set; get; }
public DateTime date_updated { set; get; }
public string account { set; get; }
public string password { set; get; }
public string name { set; get; }

public static Cuenta Get(int id)
{
    return MYSQL.Query<Cuenta>($"SELECT * FROM cuenta WHERE id='{id}'").FirstOrDefault();
}

public static Cuenta Get(string account, string password)
{
    return MYSQL.Query<Cuenta>($"SELECT * FROM cuenta WHERE account='{account.ToLower()}' AND password='{password}'").FirstOrDefault();
}

public static List<Cuenta> List()
{
    return MYSQL.Query<Cuenta>($"SELECT * FROM cuenta");
}
}

//How use examples

Cuenta cuenta = Cuenta.Get(1)// Get id 1

cuenta.Update();
cuenta.Insert();
cuenta.Delete();
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.1 is compatible. 
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.2.3 63 10/10/2024
1.2.2 56 10/10/2024
1.2.1 57 10/10/2024
1.2.0 59 10/10/2024
1.1.0 168 1/18/2024
1.0.9 613 7/19/2022
1.0.8 413 7/8/2022
1.0.7 477 2/27/2022
1.0.6 593 1/20/2022
1.0.5 584 1/20/2022
1.0.4 393 8/5/2021
1.0.3 375 4/6/2021
1.0.2 414 1/4/2021
1.0.1 440 11/25/2020
1.0.0 480 11/20/2020