Skip to content

Commit

Permalink
Merge branch 'BulkOps_Odatabind' of https://github.com/OData/WebApi i…
Browse files Browse the repository at this point in the history
…nto BulkOps_Odatabind
  • Loading branch information
Sreejithpin committed Aug 30, 2021
2 parents a648a4a + b82cd97 commit 1c9a45a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Microsoft.AspNet.OData.Shared/DeltaOfTStructuralType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ internal IDictionary<string, object> DeltaNestedResources
get { return _deltaNestedResources; }
}

internal IDictionary<string, object> DeltaNestedResources
{
get { return _deltaNestedResources; }
}

/// <inheritdoc/>
public override Type ExpectedClrType
=> typeof(TStructuralType);
Expand Down Expand Up @@ -158,6 +163,21 @@ public IList<string> UpdatableProperties
internal PropertyInfo InstanceAnnotationsPropertyInfo { get { return _instanceAnnotationsPropertyInfo; } }


/// <summary>
/// Gets the enum type of <see cref="EdmDeltaEntityKind"/>.
/// </summary>
public EdmDeltaEntityKind DeltaKind { get; protected set; }

/// <inheritdoc />
public IODataInstanceAnnotationContainer TransientInstanceAnnotationContainer { get; set; }

/// <inheritdoc />
public ODataIdContainer ODataIdContainer { get; set; }

/// <inheritdoc />
internal PropertyInfo InstanceAnnotationsPropertyInfo { get { return _instanceAnnotationsPropertyInfo; } }


/// <inheritdoc/>
public override void Clear()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ public class Microsoft.AspNet.OData.Delta`1 : TypedDelta, IDynamicMetaObjectProv
System.Type ExpectedClrType { public virtual get; }
ODataIdContainer ODataIdContainer { public virtual get; public virtual set; }
System.Type StructuredType { public virtual get; }
IODataInstanceAnnotationContainer TransientInstanceAnnotationContainer { public virtual get; public virtual set; }

System.Collections.Generic.IList`1[[System.String]] UpdatableProperties { public get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ public class Microsoft.AspNet.OData.Delta`1 : TypedDelta, IDynamicMetaObjectProv
System.Type ExpectedClrType { public virtual get; }
ODataIdContainer ODataIdContainer { public virtual get; public virtual set; }
System.Type StructuredType { public virtual get; }
IODataInstanceAnnotationContainer TransientInstanceAnnotationContainer { public virtual get; public virtual set; }

System.Collections.Generic.IList`1[[System.String]] UpdatableProperties { public get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ public class Microsoft.AspNet.OData.Delta`1 : TypedDelta, IDynamicMetaObjectProv
System.Type ExpectedClrType { public virtual get; }
ODataIdContainer ODataIdContainer { public virtual get; public virtual set; }
System.Type StructuredType { public virtual get; }
IODataInstanceAnnotationContainer TransientInstanceAnnotationContainer { public virtual get; public virtual set; }

System.Collections.Generic.IList`1[[System.String]] UpdatableProperties { public get; }

Expand Down

0 comments on commit 1c9a45a

Please sign in to comment.