Class SelectSettings
Represents the settings for a Select-operation
Inheritance
System.Object
SelectSettings
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.Database
Assembly: TimeCockpit.Data.dll
Syntax
public sealed class SelectSettings
Constructors
SelectSettings()
Initializes a new instance of the SelectSettings class
Declaration
public SelectSettings()
Properties
BlobHandling
Gets or sets a value that specifies how binary properties stored in blob store are handled.
Declaration
public BlobHandling BlobHandling { get; set; }
Property Value
Type | Description |
---|---|
BlobHandling |
Remarks
If the property is set to DoNotReadBlobs blobs stored in blob storage are not read from blob storage. Instead the value of the blob property in EntityObject is the GUID and not the binary value of the blob.
Environment
Gets or sets the instance of Environment that provides access to certain global values like the current user.
Declaration
public Environment Environment { get; set; }
Property Value
Type | Description |
---|---|
Environment |
MaxRowCount
Gets or sets the maximum number of rows to fetch
Declaration
public long? MaxRowCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Remarks
The default value for this property is null (i.e. fetch all available rows.
See Also
TimeCockpit.Data.Database.DbClient.Select(System.String,TimeCockpit.Data.DataModel.Model,TimeCockpit.Data.Database.SelectSettings,System.Collections.Generic.IEnumerable{TimeCockpit.Data.QueryLanguage.QueryParameter},TimeCockpit.Data.Database.SelectCache)