SqlServerMemoryStore Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.