Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Gemstone.Data/Model/ITableOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public interface ITableOperations
/// returned value so that the field value will be properly set prior to executing the database function.
/// </para>
/// </remarks>
RecordRestriction? RootQueryRestriction { get; init; }
RecordRestriction? RootQueryRestriction { get; set; }

/// <summary>
/// Gets or sets flag that determines if <see cref="RootQueryRestriction"/> should be applied to update operations.
Expand Down
2 changes: 1 addition & 1 deletion src/Gemstone.Data/Model/TableOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ public TableOperations(AdoDataConnection connection, Action<Exception> exception
public DataTable? PrimaryKeyCache { get; set; }

/// <inheritdoc/>
public RecordRestriction? RootQueryRestriction { get; init; }
public RecordRestriction? RootQueryRestriction { get; set; }

/// <inheritdoc/>
public bool ApplyRootQueryRestrictionToUpdates { get; init; }
Expand Down
Loading