Semantico.Core.SqlServer 2.0.7.2

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Semantico.Core.SqlServer --version 2.0.7.2
                    
NuGet\Install-Package Semantico.Core.SqlServer -Version 2.0.7.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="Semantico.Core.SqlServer" Version="2.0.7.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Semantico.Core.SqlServer" Version="2.0.7.2" />
                    
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 2.0.7.2
                    
#r "nuget: Semantico.Core.SqlServer, 2.0.7.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.
#:package Semantico.Core.SqlServer@2.0.7.2
                    
#: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=2.0.7.2
                    
Install as a Cake Addin
#tool nuget:?package=Semantico.Core.SqlServer&version=2.0.7.2
                    
Install as a Cake Tool

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 Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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
3.1.1.1 74 1/27/2026
3.0.0.5 117 1/26/2026
3.0.0.4 100 1/23/2026
3.0.0.3 87 1/23/2026
3.0.0.2 92 1/23/2026
3.0.0.1 101 1/22/2026
2.0.8.7 107 1/22/2026
2.0.8.6 116 1/21/2026
2.0.8.5 108 1/21/2026
2.0.8.2 91 1/20/2026
2.0.6.1 533 12/9/2025