Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ namespace Microsoft.AspNetCore.OData.Formatter.Value;
/// Represents an <see cref="IEdmChangedObject"/> with no backing CLR <see cref="Type"/>.
/// Used to hold the Entry object in the Delta Feed Payload.
/// </summary>
[Obsolete("EdmDeltaComplexObject is obsolete and will be dropped in the 10.x release. Please use EdmComplexObject instead.")]
[NonValidatingParameterBinding]
public class EdmDeltaComplexObject : EdmComplexObject
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ namespace Microsoft.AspNetCore.OData.Formatter.Value;
/// Represents an <see cref="IEdmChangedObject"/> with no backing CLR <see cref="Type"/>.
/// Used to hold the Entry object in the Delta Feed Payload.
/// </summary>
[Obsolete("EdmDeltaResourceObject is obsolete and will be dropped in the 10.x release. Please use EdmEntityObject instead.")]
[NonValidatingParameterBinding]
public class EdmDeltaResourceObject : EdmEntityObject, IEdmChangedObject
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2529,6 +2529,7 @@ public class Microsoft.AspNetCore.OData.Formatter.Value.EdmComplexObjectCollecti
}

[
ObsoleteAttribute(),
NonValidatingParameterBindingAttribute(),
]
public class Microsoft.AspNetCore.OData.Formatter.Value.EdmDeltaComplexObject : Microsoft.AspNetCore.OData.Formatter.Value.EdmComplexObject, IDynamicMetaObjectProvider, IDelta, IDeltaSetItem, IEdmChangedObject, IEdmComplexObject, IEdmObject, IEdmStructuredObject {
Expand Down Expand Up @@ -2574,6 +2575,7 @@ public class Microsoft.AspNetCore.OData.Formatter.Value.EdmDeltaLink : Microsoft
}

[
ObsoleteAttribute(),
NonValidatingParameterBindingAttribute(),
]
public class Microsoft.AspNetCore.OData.Formatter.Value.EdmDeltaResourceObject : Microsoft.AspNetCore.OData.Formatter.Value.EdmEntityObject, IDynamicMetaObjectProvider, IDelta, IDeltaSetItem, IEdmChangedObject, IEdmEntityObject, IEdmObject, IEdmStructuredObject {
Expand Down