|
ObjectChangeTrackingExtensionsToUntrackedTObject Method
|
Turns given object and all associates to untrackable objects (i.e. POCO objects).
Namespace:
TrackerDog
Assembly:
TrackerDog (in TrackerDog.dll) Version: 2.2.1.0 (2.2.1.0)
Syntax public static TObject ToUntracked<TObject>(
this TObject some
)
where TObject : class
<ExtensionAttribute>
Public Shared Function ToUntracked(Of TObject As Class) (
some As TObject
) As TObject
Parameters
- some
- Type: TObject
The whole object to untrack
Type Parameters
- TObject
- The type of the whole object to untrack
Return Value
Type:
TObjectThe untracked version of given object
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also