mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
Added PetaPoco
This commit is contained in:
32
packages/PetaPoco.4.0.2/Content/Models/Generated/Database.tt
vendored
Normal file
32
packages/PetaPoco.4.0.2/Content/Models/Generated/Database.tt
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<#@ include file="PetaPoco.Core.ttinclude" #>
|
||||
<#
|
||||
// Settings
|
||||
ConnectionStringName = ""; // Uses last connection string in config if not specified
|
||||
Namespace = "";
|
||||
RepoName = "";
|
||||
GenerateOperations = true;
|
||||
GeneratePocos = true;
|
||||
GenerateCommon = true;
|
||||
ClassPrefix = "";
|
||||
ClassSuffix = "";
|
||||
|
||||
// Read schema
|
||||
var tables = LoadTables();
|
||||
|
||||
|
||||
/*
|
||||
// Tweak Schema
|
||||
tables["tablename"].Ignore = true; // To ignore a table
|
||||
tables["tablename"].ClassName = "newname"; // To change the class name of a table
|
||||
tables["tablename"]["columnname"].Ignore = true; // To ignore a column
|
||||
tables["tablename"]["columnname"].PropertyName="newname"; // To change the property name of a column
|
||||
tables["tablename"]["columnname"].PropertyType="bool"; // To change the property type of a column
|
||||
*/
|
||||
|
||||
// Generate output
|
||||
if (tables.Count>0)
|
||||
{
|
||||
#>
|
||||
<#@ include file="PetaPoco.Generator.ttinclude" #>
|
||||
<# } #>
|
||||
|
1615
packages/PetaPoco.4.0.2/Content/Models/Generated/PetaPoco.Core.ttinclude
vendored
Normal file
1615
packages/PetaPoco.4.0.2/Content/Models/Generated/PetaPoco.Core.ttinclude
vendored
Normal file
File diff suppressed because it is too large
Load Diff
136
packages/PetaPoco.4.0.2/Content/Models/Generated/PetaPoco.Generator.ttinclude
vendored
Normal file
136
packages/PetaPoco.4.0.2/Content/Models/Generated/PetaPoco.Generator.ttinclude
vendored
Normal file
@@ -0,0 +1,136 @@
|
||||
<#
|
||||
if (string.IsNullOrEmpty(Namespace)) Namespace=ConnectionStringName;
|
||||
if (string.IsNullOrEmpty(RepoName) && !string.IsNullOrEmpty(ConnectionStringName)) RepoName=ConnectionStringName + "DB";
|
||||
if (string.IsNullOrEmpty(Namespace)) Namespace="PetaPoco";
|
||||
if (string.IsNullOrEmpty(RepoName)) RepoName="PetaPocoDB";
|
||||
#>
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using PetaPoco;
|
||||
|
||||
namespace <#=Namespace #>
|
||||
{
|
||||
<# if (GenerateCommon) { #>
|
||||
public partial class <#=RepoName#> : Database
|
||||
{
|
||||
public <#=RepoName#>()
|
||||
: base("<#=ConnectionStringName#>")
|
||||
{
|
||||
CommonConstruct();
|
||||
}
|
||||
|
||||
public <#=RepoName#>(string connectionStringName)
|
||||
: base(connectionStringName)
|
||||
{
|
||||
CommonConstruct();
|
||||
}
|
||||
|
||||
partial void CommonConstruct();
|
||||
|
||||
public interface IFactory
|
||||
{
|
||||
<#=RepoName#> GetInstance();
|
||||
}
|
||||
|
||||
public static IFactory Factory { get; set; }
|
||||
public static <#=RepoName#> GetInstance()
|
||||
{
|
||||
if (_instance!=null)
|
||||
return _instance;
|
||||
|
||||
if (Factory!=null)
|
||||
return Factory.GetInstance();
|
||||
else
|
||||
return new <#=RepoName#>();
|
||||
}
|
||||
|
||||
[ThreadStatic] static <#=RepoName#> _instance;
|
||||
|
||||
public override void OnBeginTransaction()
|
||||
{
|
||||
if (_instance==null)
|
||||
_instance=this;
|
||||
}
|
||||
|
||||
public override void OnEndTransaction()
|
||||
{
|
||||
if (_instance==this)
|
||||
_instance=null;
|
||||
}
|
||||
|
||||
<# if (GenerateOperations) { #>
|
||||
public class Record<T> where T:new()
|
||||
{
|
||||
public static <#=RepoName#> repo { get { return <#=RepoName#>.GetInstance(); } }
|
||||
public bool IsNew() { return repo.IsNew(this); }
|
||||
public void Save() { repo.Save(this); }
|
||||
public object Insert() { return repo.Insert(this); }
|
||||
public int Update() { return repo.Update(this); }
|
||||
public int Delete() { return repo.Delete(this); }
|
||||
public static int Update(string sql, params object[] args) { return repo.Update<T>(sql, args); }
|
||||
public static int Update(Sql sql) { return repo.Update<T>(sql); }
|
||||
public static int Delete(string sql, params object[] args) { return repo.Delete<T>(sql, args); }
|
||||
public static int Delete(Sql sql) { return repo.Delete<T>(sql); }
|
||||
public static int Delete(object primaryKey) { return repo.Delete<T>(primaryKey); }
|
||||
public static bool Exists(object primaryKey) { return repo.Exists<T>(primaryKey); }
|
||||
public static T SingleOrDefault(object primaryKey) { return repo.SingleOrDefault<T>(primaryKey); }
|
||||
public static T SingleOrDefault(string sql, params object[] args) { return repo.SingleOrDefault<T>(sql, args); }
|
||||
public static T SingleOrDefault(Sql sql) { return repo.SingleOrDefault<T>(sql); }
|
||||
public static T FirstOrDefault(string sql, params object[] args) { return repo.FirstOrDefault<T>(sql, args); }
|
||||
public static T FirstOrDefault(Sql sql) { return repo.FirstOrDefault<T>(sql); }
|
||||
public static T Single(object primaryKey) { return repo.Single<T>(primaryKey); }
|
||||
public static T Single(string sql, params object[] args) { return repo.Single<T>(sql, args); }
|
||||
public static T Single(Sql sql) { return repo.Single<T>(sql); }
|
||||
public static T First(string sql, params object[] args) { return repo.First<T>(sql, args); }
|
||||
public static T First(Sql sql) { return repo.First<T>(sql); }
|
||||
public static List<T> Fetch(string sql, params object[] args) { return repo.Fetch<T>(sql, args); }
|
||||
public static List<T> Fetch(Sql sql) { return repo.Fetch<T>(sql); }
|
||||
public static List<T> Fetch(long page, long itemsPerPage, string sql, params object[] args) { return repo.Fetch<T>(page, itemsPerPage, sql, args); }
|
||||
public static List<T> Fetch(long page, long itemsPerPage, Sql sql) { return repo.Fetch<T>(page, itemsPerPage, sql); }
|
||||
public static Page<T> Page(long page, long itemsPerPage, string sql, params object[] args) { return repo.Page<T>(page, itemsPerPage, sql, args); }
|
||||
public static Page<T> Page(long page, long itemsPerPage, Sql sql) { return repo.Page<T>(page, itemsPerPage, sql); }
|
||||
public static IEnumerable<T> Query(string sql, params object[] args) { return repo.Query<T>(sql, args); }
|
||||
public static IEnumerable<T> Query(Sql sql) { return repo.Query<T>(sql); }
|
||||
}
|
||||
<# } #>
|
||||
}
|
||||
<# } #>
|
||||
|
||||
<# if (GeneratePocos) { #>
|
||||
<#
|
||||
foreach(Table tbl in from t in tables where !t.Ignore select t)
|
||||
{
|
||||
#>
|
||||
|
||||
[TableName("<#=tbl.Name#>")]
|
||||
<# if (tbl.PK!=null && tbl.PK.IsAutoIncrement) { #>
|
||||
<# if (tbl.SequenceName==null) { #>
|
||||
[PrimaryKey("<#=tbl.PK.Name#>")]
|
||||
<# } else { #>
|
||||
[PrimaryKey("<#=tbl.PK.Name#>", sequenceName="<#=tbl.SequenceName#>")]
|
||||
<# } #>
|
||||
<# } #>
|
||||
<# if (tbl.PK!=null && !tbl.PK.IsAutoIncrement) { #>
|
||||
[PrimaryKey("<#=tbl.PK.Name#>", autoIncrement=false)]
|
||||
<# } #>
|
||||
[ExplicitColumns]
|
||||
public partial class <#=tbl.ClassName#> <# if (GenerateOperations) { #>: <#=RepoName#>.Record<<#=tbl.ClassName#>> <# } #>
|
||||
{
|
||||
<#
|
||||
foreach(Column col in from c in tbl.Columns where !c.Ignore select c)
|
||||
{
|
||||
// Column bindings
|
||||
#>
|
||||
<# if (col.Name!=col.PropertyName) { #>
|
||||
[Column("<#=col.Name#>")] public <#=col.PropertyType #><#=CheckNullable(col)#> <#=col.PropertyName #> { get; set; }
|
||||
<# } else { #>
|
||||
[Column] public <#=col.PropertyType #><#=CheckNullable(col)#> <#=col.PropertyName #> { get; set; }
|
||||
<# } #>
|
||||
<# } #>
|
||||
}
|
||||
|
||||
<# } #>
|
||||
<# } #>
|
||||
}
|
Reference in New Issue
Block a user