Interface IAsymmetricObject
Base interface for any asymmetric object that can be persisted in a Realm.
Inherited Members
Namespace: Realms
Assembly: Realm.dll
Syntax
public interface IAsymmetricObject : IRealmObjectBase
Remarks
The benefit of using IAsymmetric
This interface will be implemented automatically by the Realm source generator as long as your
model class is declared as partial
.
Examples
public partial class SensorReading : IAsymmetricObject
{
public DateTimeOffset TimeStamp { get; set; } = DateTimeOffset.UtcNow;
public double Value { get; set; }
}