Skip to content

Commit 2e7a4d3

Browse files
committed
added aspire sample
1 parent 79ac3ce commit 2e7a4d3

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

db/samples/sample-data.sql

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ GO
506506

507507
exec dbo.add_sample '
508508
{
509-
"name": "SqlDatabaseVectorSearch",
509+
"name": "SQL Database Vector Search",
510510
"description": "A repository that showcases the native VECTOR type in Azure SQL Database to perform embeddings and RAG with Azure OpenAI, using DOC, PDF, TXT and MD documents.",
511511
"notes": "A repository that showcases the native VECTOR type in Azure SQL Database to perform embeddings and RAG with Azure OpenAI. The application allows to load documents, generate embeddings and save them into the database as Vectors, and perform searches using Vector Search and RAG. Currently, PDF, DOCX, TXT and MD files are supported. Vectors are saved and retrieved with Entity Framework Core using the EFCore.SqlServer.VectorSearch library. Embedding and Chat Completion are integrated with Semantic Kernel. This repository contains a Blazor Web App as well as a Minimal API that allows to programatically interact with embeddings and RAG.",
512512
"url": "https://github.com/marcominerva/SqlDatabaseVectorSearch",
@@ -521,6 +521,24 @@ exec dbo.add_sample '
521521
';
522522
GO
523523

524+
exec dbo.add_sample '
525+
{
526+
"name": "Azure SQL and SQL Server with .NET Aspire",
527+
"description": "Samples on how to use SQL Server and Azure SQL with .NET Aspire. The samples cover also usage of DbUp, Database Projects, Data API Builder, Node+Vue and also a full end-to-end fullstack application with Aspire, SQL Server, Database Projects, Data API Builder, Node and Vue",
528+
"notes": "A set of samples showing how to use Azure SQL and SQL Server with Aspire. Starting from using an existing SQL Server instance through using SQL Server hosted in Aspire, and then deploying the database using DBUp, Database Projects and Entity Framework integration. Data API builder is also integrated to have a CRUD service ready in seconds and then a full end-to-end solution is provided using .NEt Aspire, SQL Server, Data API Builder, Database Projects, Node and Vue.Js as a frontend. The end-to-end application is the well-known ToDo application.",
529+
"url": "https://github.com/Azure-Samples/azure-sql-db-aspire",
530+
"details": {
531+
"author": "Davide Mauri",
532+
"languages": ["T-SQL", "C#", "Node"],
533+
"services": ["Azure SQL", "SQL Server"],
534+
"frameworks": ["Vue", "Vue.js"],
535+
"license": "MIT",
536+
"tags": ["End-to-End", "Aspire", "EFCore", "UX", "UI", ".NET", "DotNet", "Fullstack", "Data API Buider", "DAB"]
537+
}
538+
}
539+
';
540+
GO
541+
524542
select id, name, created_on, updated_on from dbo.samples order by created_on desc;
525543
--where [url] like '%kmeans%'
526544
GO

0 commit comments

Comments
 (0)