Galosys.Foundation.Yarp.Database 25.10.30.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Galosys.Foundation.Yarp.Database --version 25.10.30.5
                    
NuGet\Install-Package Galosys.Foundation.Yarp.Database -Version 25.10.30.5
                    
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="Galosys.Foundation.Yarp.Database" Version="25.10.30.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Galosys.Foundation.Yarp.Database" Version="25.10.30.5" />
                    
Directory.Packages.props
<PackageReference Include="Galosys.Foundation.Yarp.Database" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Galosys.Foundation.Yarp.Database --version 25.10.30.5
                    
#r "nuget: Galosys.Foundation.Yarp.Database, 25.10.30.5"
                    
#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.
#:package Galosys.Foundation.Yarp.Database@25.10.30.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Galosys.Foundation.Yarp.Database&version=25.10.30.5
                    
Install as a Cake Addin
#tool nuget:?package=Galosys.Foundation.Yarp.Database&version=25.10.30.5
                    
Install as a Cake Tool

Gateway

CREATE SCHEMA docking_center;
-- [foundation-admin].docking_center.docking_log definition

-- Drop table

-- DROP TABLE [foundation-admin].docking_center.docking_log;

CREATE TABLE [foundation-admin].docking_center.docking_log (
	id bigint NOT NULL,
	request_path varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NOT NULL,
	request_url varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NOT NULL,
	request_method varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	request_query_params varchar(200) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	request_headers varchar(1000) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	request_body varchar(500) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	response_body varchar(2000) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	router_template_id bigint NULL,
	execute_result bit DEFAULT 0 NOT NULL,
	occurred_on datetime2 NULL,
	CONSTRAINT PK_docking_center_docking_log PRIMARY KEY (id)
);


-- [foundation-admin].docking_center.router_template definition

-- Drop table

-- DROP TABLE [foundation-admin].docking_center.router_template;

CREATE TABLE [foundation-admin].docking_center.router_template (
	id bigint NOT NULL,
	template_code varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NOT NULL,
	request_path varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NOT NULL,
	router_uri varchar(512) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	path_prefix varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	path_remove_prefix varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	request_headers_copy bit DEFAULT 1 NOT NULL,
	deleted bit DEFAULT 0 NOT NULL,
	creator_id bigint DEFAULT 1 NULL,
	creator_name varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 DEFAULT '1' NOT NULL,
	created_at datetime2 NOT NULL,
	last_modifier_id bigint NULL,
	last_modifier_name varchar(64) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	last_modified_at datetime2 NULL,
	remark varchar(128) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	max_retries int DEFAULT 5 NOT NULL,
	[source] varchar(255) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	target varchar(255) COLLATE Chinese_PRC_90_CI_AI_SC_UTF8 NULL,
	CONSTRAINT PK_docking_center_router_template PRIMARY KEY (id)
);
 CREATE  UNIQUE NONCLUSTERED INDEX UIDX_router_template_code ON cc.router_template (  template_code ASC  )  
	 WITH (  PAD_INDEX = OFF ,FILLFACTOR = 100  ,SORT_IN_TEMPDB = OFF , IGNORE_DUP_KEY = OFF , STATISTICS_NORECOMPUTE = OFF , ONLINE = OFF , ALLOW_ROW_LOCKS = ON , ALLOW_PAGE_LOCKS = ON  )
	 ON [PRIMARY ] ;



Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
25.11.26.1 0 11/26/2025
25.11.26.1-sqlbuilder 0 11/26/2025
25.11.21.1-rc3 287 11/21/2025
25.11.21.1-rc2 296 11/21/2025
25.11.21.1-rc 324 11/21/2025
25.11.15.1-rc2 318 11/21/2025
25.11.15.1-rc 134 11/15/2025
25.11.14.2 220 11/14/2025
25.11.14.1 217 11/14/2025
25.10.30.6 149 10/31/2025
25.10.30.6-rc2 158 10/31/2025
25.10.30.5 161 10/31/2025