blob: 82a33ce0fc537e4771b050b0a79c2a9f1c7e0073 [file]
using Apache.Ignite.Core;
namespace dotnet_helloworld
{
public class UnderstandingSchemas
{
public static void MultipleSchemas()
{
// tag::schemas[]
var cfg = new IgniteConfiguration
{
SqlSchemas = new[]
{
"MY_SCHEMA",
"MY_SECOND_SCHEMA"
}
};
// end::schemas[]
}
}
}