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.
22 lines
408 B
22 lines
408 B
using System.Collections.Immutable;
|
|
using System.Data;
|
|
|
|
namespace Connected.Entities.Storage
|
|
{
|
|
public enum DataConcurrencyMode
|
|
{
|
|
Enabled = 1,
|
|
Disabled = 2,
|
|
}
|
|
|
|
public interface IStorageOperation
|
|
{
|
|
string CommandText { get; }
|
|
CommandType CommandType { get; }
|
|
|
|
ImmutableList<IStorageParameter>? Parameters { get; }
|
|
int CommandTimeout { get; }
|
|
DataConcurrencyMode Concurrency { get; }
|
|
}
|
|
}
|