Class TimestampAttribute
Instructs the serializer to write DateTime fields and properties in Timestamp format, which is interoperable with other platforms and works in SQL, but does not allow non-UTC values.
When applied to a struct or a class, changes behavior for all fields and properties. Normally serializer uses WriteObject<T>(string, T) for DateTime fields. This attribute changes the behavior to WriteTimestamp(string, DateTime?). See also ForceTimestamp.Inherited Members
Namespace: Apache.Ignite.Core.Binary
Assembly: Apache.Ignite.Core.dll
Syntax
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Property|AttributeTargets.Field)]
public sealed class TimestampAttribute : Attribute