인터페이스 IAsymmetricObject
Realm 에서 지속될 수 있는 모든 비대칭 객체에 대한 기본 인터페이스입니다.
상속된 멤버
네임스페이스: Realms
어셈블리: Realm.exe
구문
public interface IAsymmetricObject : IRealmObjectBase
비고
IAsymmetric
모델 클래스가 partial
으로 선언되어 있는 한 이 인터페이스는 Realm 소스 생성기에 의해 자동으로 구현됩니다.
예시
public partial class SensorReading : IAsymmetricObject
{
public DateTimeOffset TimeStamp { get; set; } = DateTimeOffset.UtcNow;
public double Value { get; set; }
}