Partager via


SqlServerMemoryStore Constructors

Definition

Overloads

SqlServerMemoryStore(SqlConnection, String)

Initializes a new instance of the SqlServerMemoryStore class.

SqlServerMemoryStore(String, String)

Initializes a new instance of the SqlServerMemoryStore class.

SqlServerMemoryStore(SqlConnection, String)

Initializes a new instance of the SqlServerMemoryStore class.

public SqlServerMemoryStore (Microsoft.Data.SqlClient.SqlConnection connection, string schema = "dbo");
new Microsoft.SemanticKernel.Connectors.SqlServer.SqlServerMemoryStore : Microsoft.Data.SqlClient.SqlConnection * string -> Microsoft.SemanticKernel.Connectors.SqlServer.SqlServerMemoryStore
Public Sub New (connection As SqlConnection, Optional schema As String = "dbo")

Parameters

connection
SqlConnection

Database connection.

schema
String

Database schema of collection tables.

Applies to

SqlServerMemoryStore(String, String)

Initializes a new instance of the SqlServerMemoryStore class.

public SqlServerMemoryStore (string connectionString, string schema = "dbo");
new Microsoft.SemanticKernel.Connectors.SqlServer.SqlServerMemoryStore : string * string -> Microsoft.SemanticKernel.Connectors.SqlServer.SqlServerMemoryStore
Public Sub New (connectionString As String, Optional schema As String = "dbo")

Parameters

connectionString
String

Database connection string.

schema
String

Database schema of collection tables.

Applies to