MigSharp.DbAltererOptions.SuppressWarning C# (CSharp) Метод

SuppressWarning() публичный Метод

Suppresses validation warnings for dbPlatform and the data type type under the condition.
public SuppressWarning ( DbPlatform dbPlatform, DbType type, SuppressCondition condition ) : void
dbPlatform DbPlatform
type DbType
condition SuppressCondition
Результат void
        public void SuppressWarning(DbPlatform dbPlatform, DbType type, SuppressCondition condition)
        {
            _warningSuppressions.Add(new Suppression(dbPlatform, type, condition));
        }