VOOZH about

URL: https://www.nuget.org/packages/Semantico.Core.SqlServer/

⇱ NuGet Gallery | Semantico.Core.SqlServer 3.7.0.1




Semantico.Core.SqlServer 3.7.0.1

dotnet add package Semantico.Core.SqlServer --version 3.7.0.1
 
 
NuGet\Install-Package Semantico.Core.SqlServer -Version 3.7.0.1
 
 
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="Semantico.Core.SqlServer" Version="3.7.0.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Semantico.Core.SqlServer" Version="3.7.0.1" />
 
Directory.Packages.props
<PackageReference Include="Semantico.Core.SqlServer" />
 
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 Semantico.Core.SqlServer --version 3.7.0.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Semantico.Core.SqlServer, 3.7.0.1"
 
 
#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 Semantico.Core.SqlServer@3.7.0.1
 
 
#: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=Semantico.Core.SqlServer&version=3.7.0.1
 
Install as a Cake Addin
#tool nuget:?package=Semantico.Core.SqlServer&version=3.7.0.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Semantico.Core.SqlServer

SQL Server database provider for Semantico.

Overview

This package provides Entity Framework Core configuration and migrations for using SQL Server as the Semantico metadata database. It supports SQL Server 2019+ and Azure SQL Database.

Installation

dotnet add package Semantico.Core.SqlServer
dotnet add package Semantico.UI.AspNet

Quick Start

1. Configure in Program.cs

using Semantico.Core;
using Semantico.UI.AspNet;

// Single method call for all Semantico configuration
builder.Services.AddSemantico(builder.Configuration, options =>
{
 options.UseSqlServer(builder.Configuration.GetConnectionString("SemanticoContext")!, "semantico");
 options.AddSemanticoScheduler<YourScheduler>();
 options.BaseUrl = "https://your-domain.com/semantico";
});

var app = builder.Build();

app.UseStaticFiles(); // Required for Semantico UI assets

app.UseSemanticoUI()
 .UseBasicAuthentication("admin", "admin")
 .AddBlazorUI("/semantico");

2. Add Connection String

In appsettings.json:

{
 "ConnectionStrings": {
 "SemanticoContext": "Server=localhost;Database=semantico;User Id=sa;Password=YourPassword123!;TrustServerCertificate=True"
 }
}

Features

  • SQL Server 2019+ support
  • Azure SQL Database support
  • Entity Framework Core integration
  • Automatic schema creation and migrations
  • Multi-tenant support via schema isolation

Database Setup

CREATE DATABASE semantico;
GO
USE semantico;
GO
CREATE SCHEMA semantico;
GO

Documentation

License

MIT License - see LICENSE

Product Versions Compatible and additional computed target framework versions.
.NET net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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
3.7.0.1 104 5/12/2026
3.6.0.1 117 4/7/2026
3.5.0.2 602 2/24/2026
3.5.0.1 109 2/24/2026
3.4.0.3 162 2/18/2026
3.4.0.2 106 2/18/2026
3.4.0.1 112 2/16/2026
3.3.0.1 116 2/9/2026
3.2.1.1 191 2/3/2026
3.1.1.1 133 1/27/2026
3.0.0.5 190 1/26/2026
3.0.0.4 144 1/23/2026
3.0.0.3 139 1/23/2026
3.0.0.2 138 1/23/2026
3.0.0.1 147 1/22/2026
2.0.8.7 158 1/22/2026
2.0.8.6 151 1/21/2026
2.0.8.5 141 1/21/2026
Loading failed