diff --git a/src/Gemstone.Data/Model/ITableOperations.cs b/src/Gemstone.Data/Model/ITableOperations.cs index 47dee6716..d45359df2 100644 --- a/src/Gemstone.Data/Model/ITableOperations.cs +++ b/src/Gemstone.Data/Model/ITableOperations.cs @@ -138,7 +138,7 @@ public interface ITableOperations /// returned value so that the field value will be properly set prior to executing the database function. /// /// - RecordRestriction? RootQueryRestriction { get; init; } + RecordRestriction? RootQueryRestriction { get; set; } /// /// Gets or sets flag that determines if should be applied to update operations. diff --git a/src/Gemstone.Data/Model/TableOperations.cs b/src/Gemstone.Data/Model/TableOperations.cs index 9390ce344..b3bfc7fc5 100644 --- a/src/Gemstone.Data/Model/TableOperations.cs +++ b/src/Gemstone.Data/Model/TableOperations.cs @@ -395,7 +395,7 @@ public TableOperations(AdoDataConnection connection, Action exception public DataTable? PrimaryKeyCache { get; set; } /// - public RecordRestriction? RootQueryRestriction { get; init; } + public RecordRestriction? RootQueryRestriction { get; set; } /// public bool ApplyRootQueryRestrictionToUpdates { get; init; }