SecureTableOperationsT Methods

Methods

DeleteRecord(ClaimsPrincipal, T) Deletes the specified modeled table record from the database.
DeleteRecord(ClaimsPrincipal, RecordRestriction, NullableBoolean) Deletes the records referenced by the specified restriction.
DeleteRecordAsync(ClaimsPrincipal, T, CancellationToken) Deletes the specified modeled table record from the database.
DeleteRecordAsync(ClaimsPrincipal, RecordRestriction, CancellationToken, NullableBoolean) Deletes the records referenced by the specified restriction.
DeleteRecordWhere Deletes the records referenced by the specified SQL filter expression and parameters.
DeleteRecordWhereAsync Deletes the records referenced by the specified SQL filter expression and parameters.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
NewRecord Creates a new modeled record instance, applying any modeled default values as specified by a DefaultValueAttribute or DefaultValueExpressionAttribute on the model properties.
QueryRecord(ClaimsPrincipal, RecordRestriction) Queries database and returns a single modeled table record for the specified restriction.
QueryRecord(ClaimsPrincipal, String, RecordRestriction) Queries database and returns a single modeled table record for the specified restriction, execution of query will apply orderByExpression.
QueryRecordAsync(ClaimsPrincipal, RecordRestriction, CancellationToken) Queries database and returns a single modeled table record for the specified restriction.
QueryRecordAsync(ClaimsPrincipal, String, RecordRestriction, CancellationToken) Queries database and returns a single modeled table record for the specified restriction, execution of query will apply orderByExpression.
QueryRecordCount(ClaimsPrincipal) Gets total record count for the modeled table.
QueryRecordCount(ClaimsPrincipal, IRecordFilter) Gets the record count for the modeled table based on search parameter. Search executed against fields modeled with SearchableAttribute.
QueryRecordCount(ClaimsPrincipal, RecordRestriction) Gets the record count for the specified restrictions - or - total record count for the modeled table if restrictions is null.
QueryRecordCountAsync(ClaimsPrincipal, CancellationToken) Gets total record count for the modeled table.
QueryRecordCountAsync(ClaimsPrincipal, CancellationToken, IRecordFilter) Gets the record count for the modeled table based on search parameter. Search executed against fields modeled with SearchableAttribute.
QueryRecordCountAsync(ClaimsPrincipal, CancellationToken, RecordRestriction) Gets the record count for the specified restrictions - or - total record count for the modeled table if restrictions is null.
QueryRecordCountWhere Gets the record count for the modeled table for the specified SQL filter expression and parameters.
QueryRecordCountWhereAsync Gets the record count for the modeled table for the specified SQL filter expression and parameters.
QueryRecords(ClaimsPrincipal, RecordRestriction) Queries database and returns modeled table records for the specified restriction.
QueryRecords(ClaimsPrincipal, String, RecordRestriction, Int32) Queries database and returns modeled table records for the specified parameters.
QueryRecords(ClaimsPrincipal, String, Boolean, Int32, Int32) Queries database and returns modeled table records for the specified sorting and paging parameters.
QueryRecords(ClaimsPrincipal, String, Boolean, Int32, Int32, IRecordFilter) Queries database and returns modeled table records for the specified sorting, paging and search parameters. Search executed against fields modeled with SearchableAttribute.
QueryRecords(ClaimsPrincipal, String, Boolean, Int32, Int32, RecordRestriction) Queries database and returns modeled table records for the specified sorting and paging parameters.
QueryRecordsAsync(ClaimsPrincipal, RecordRestriction, CancellationToken) Queries database and returns modeled table records for the specified restriction.
QueryRecordsAsync(ClaimsPrincipal, String, RecordRestriction, Int32, CancellationToken) Queries database and returns modeled table records for the specified parameters.
QueryRecordsAsync(ClaimsPrincipal, String, Boolean, Int32, Int32, CancellationToken) Queries database and returns modeled table records for the specified sorting and paging parameters.
QueryRecordsAsync(ClaimsPrincipal, String, Boolean, Int32, Int32, CancellationToken, IRecordFilter) Queries database and returns modeled table records for the specified sorting, paging and search parameters. Search executed against fields modeled with SearchableAttribute.
QueryRecordsAsync(ClaimsPrincipal, String, Boolean, Int32, Int32, CancellationToken, RecordRestriction) Queries database and returns modeled table records for the specified sorting and paging parameters.
QueryRecordsWhere Queries database and returns modeled table records for the specified SQL filter expression and parameters.
QueryRecordsWhereAsync Queries database and returns modeled table records for the specified SQL filter expression and parameters.
QueryRecordWhere Queries database and returns a single modeled table record for the specified SQL filter expression and parameters.
QueryRecordWhereAsync Queries database and returns a single modeled table record for the specified SQL filter expression and parameters.
ToStringReturns a string that represents the current object.
(Inherited from Object)
UpdateRecord(ClaimsPrincipal, DataRow, RecordRestriction) Updates the database with the specified row, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecord(ClaimsPrincipal, T, RecordRestriction, NullableBoolean) Updates the database with the specified modeled table record, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecordAsync(ClaimsPrincipal, DataRow, CancellationToken, RecordRestriction) Updates the database with the specified row, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecordAsync(ClaimsPrincipal, T, CancellationToken, RecordRestriction, NullableBoolean) Updates the database with the specified modeled table record, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecordWhere(ClaimsPrincipal, T, String, Object) Updates the database with the specified modeled table record referenced by the specified SQL filter expression and parameters, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecordWhere(ClaimsPrincipal, DataRow, String, Object) Updates the database with the specified row referenced by the specified SQL filter expression and parameters, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecordWhereAsync(ClaimsPrincipal, T, String, CancellationToken, Object) Updates the database with the specified modeled table record referenced by the specified SQL filter expression and parameters, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.
UpdateRecordWhereAsync(ClaimsPrincipal, DataRow, String, CancellationToken, Object) Updates the database with the specified row referenced by the specified SQL filter expression and parameters, any model properties marked with UpdateValueExpressionAttribute will be evaluated and applied before the record is provided to the data source.

See Also