Generator Members
Include Protected Members
Include Inherited Members
This class is the abstract base class for data generators.
The Generator type exposes the following members.
Constructors
Name | Description | |
---|---|---|
Generator | Initializes a new instance of the Generator class. |
Top
Methods
Name | Description | |
---|---|---|
Dispose | Overloaded. Releases the resources that the Generator class used. | |
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
GenerateNextValues | Generates the next value according to the data generation algorithm. | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetOutputValue | Retrieves an output value by using the OutputKey. | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Initialize | Initializes the data generator. | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnGenerateNextValues | Generates the next value according to the data generation algorithm. | |
OnGetOutputValue | Retrieves the current set of results that consists of one or more values. | |
OnInitialize | Initializes the generator. | |
OnNextValues | Generates the next set of values for a data row. | |
OnSetInputValues | Sets the input values for a data generator. | |
OnValidateInputs | Validates that all the required inputs on the data generator have been set. | |
SetExtensionHandle | Sets the extension handle, as specified. | |
SetInputValues | Sets the input values for a data generator. | |
ToString | Returns a String that represents the current Object. (Inherited from Object.) | |
ValidateInputs | Validates that all the required inputs on the data generator have been set. |
Top
Properties
Name | Description | |
---|---|---|
Collation | Gets or sets the collation, or linguistically appropriate sorting, of this column. | |
Column | Gets or sets the column. | |
ColumnName | Gets or sets the column name. | |
Constraints | Gets or sets the check constraint information for the column. | |
DefaultLocaleId | Gets or sets the locale ID. | |
DefaultValue | Gets or sets the default value of the column. | |
ExtensionHandle | Gets the extension handle. | |
MaxLength | Gets or sets the maximum length for this column. | |
Nullable | Gets or sets a value that indicates whether this column can be set to nulla null reference (Nothing in Visual Basic). | |
OutputKey | Gets or sets the key that is used to retrieve output values. | |
PercentageNull | Gets or sets the percentage of the generated values for this column that should be nulla null reference (Nothing in Visual Basic). The percentage is expressed as an integer between 0 and 100. | |
Precision | Gets or sets the precision of the data. | |
RowsToInsert | Gets or sets the number of rows to generate. | |
Scale | Gets or sets the scale of the data. | |
SchemaName | Gets or sets the name of the schema to which the column belongs. | |
Seed | Gets or sets the seed. You can use the seed to initialize a deterministic random data generation algorithm. | |
TableName | Gets or sets the name of the table to which the column belongs. | |
TargetType | Gets or sets the SQL data type of the column. | |
Unique | Gets or sets a value that indicates whether the column that is being generated is part of a unique constraint or a primary key constraint. |
Top