Description
Azure SQL Edge is an Internet of Things (IoT) database for edge computing which combines capabilities such as data streaming and time series with built-in machine learning and graph features.Examples
Dependency:
go get github.com/testcontainers/testcontainers-go/modules/azure/sqledge
Usage:
sqledgeContainer, err := sqledge.Run(context.Background(), "mcr.microsoft.com/azure-sql-edge:1.0.7", sqledge.WithAcceptEULA())
Dependency:
dotnet add package Testcontainers.SqlEdge
Usage:
var sqlEdgeContainer = new SqlEdgeBuilder()
.WithImage("mcr.microsoft.com/azure-sql-edge:1.0.7")
.Build();
await sqlEdgeContainer.StartAsync();