You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Data/Schema/Sql/SchemaStorageArgs.cs

16 lines
450 B

using Connected.Entities.Storage;
namespace Connected.Data.Schema.Sql;
internal sealed class SchemaStorageArgs : StorageContextArgs, ISchemaSynchronizationContext
{
public SchemaStorageArgs(IStorageOperation operation, Type connectionType, string connectionString) : base(operation)
{
ConnectionType = connectionType;
ConnectionString = connectionString;
}
public Type ConnectionType { get; }
public string ConnectionString { get; }
}