Shaolinq.Persistence.Linq.Expressions.SqlCreateTableExpression.UpdateOptions C# (CSharp) Метод

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

public UpdateOptions ( IReadOnlyList tableOptions ) : SqlCreateTableExpression
tableOptions IReadOnlyList
Результат SqlCreateTableExpression
		public SqlCreateTableExpression UpdateOptions(IReadOnlyList<SqlTableOption> tableOptions)
		{
			return new SqlCreateTableExpression(this.Table, this.IfNotExist, this.ColumnDefinitionExpressions, this.TableConstraints, tableOptions);
		}
	}