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.Entities/Storage/IStorageOperation.cs

22 lines
408 B

2 years ago
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; }
}
}