You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Re: #81, Removes IgnoreOnInsert and IgnoreOnUpdate from ReferenceAttribute as changing these properties to false does not currently provide the expected functionality.
Copy file name to clipboardExpand all lines: Postgrest/Attributes/ReferenceAttribute.cs
+6-11
Original file line number
Diff line number
Diff line change
@@ -82,31 +82,26 @@ public enum JoinType
82
82
/// <summary>Establishes a reference between two tables</summary>
83
83
/// <param name="model">Model referenced</param>
84
84
/// <param name="includeInQuery">Should referenced be included in queries?</param>
85
-
/// <param name="ignoreOnInsert">Should reference data be excluded from inserts/upserts?</param>
86
-
/// <param name="ignoreOnUpdate">Should reference data be excluded from updates?</param>
87
85
/// <param name="joinType">Specifies the join type for this relationship</param>
88
86
/// <param name="columnName">Column this attribute references as specified in Postgres, DOES NOT need to be set if <see cref="ForeignKey"/> is set.</param>
89
87
/// <param name="foreignKey">Foreign Key this attribute references as specified in Postgres (only required if the model references the same table multiple times)</param>
/// <summary>Establishes a reference between two tables</summary>
99
97
/// <param name="model">Model referenced</param>
100
98
/// <param name="includeInQuery">Should referenced be included in queries?</param>
101
-
/// <param name="ignoreOnInsert">Should reference data be excluded from inserts/upserts?</param>
102
-
/// <param name="ignoreOnUpdate">Should reference data be excluded from updates?</param>
103
99
/// <param name="useInnerJoin">As to whether the query will filter top-level rows.</param>
104
100
/// <param name="propertyName">The Property Name on the C# Model</param>
105
101
/// <param name="columnName">Column this attribute references as specified in Postgres, DOES NOT need to be set if <see cref="ForeignKey"/> is set.</param>
106
102
/// <param name="foreignKey">Foreign Key this attribute references as specified in Postgres (only required if the model references the same table multiple times)</param>
0 commit comments