C# 클래스 Nxdb.Persistence.Attributes.PersistentPathAttribute

상속: PersistentMemberAttribute
파일 보기 프로젝트 열기: daveaglick/Nxdb

공개 메소드들

메소드 설명
PersistentPathAttribute ( string query, string createQuery ) : System

Initializes a new instance of the PersistentPathAttribute class.

비공개 메소드들

메소드 설명
FetchValue ( Element element, object target, TypeCache typeCache, Cache cache ) : object
Inititalize ( Type memberType, string memberName, Cache cache ) : void
SerializeValue ( object source, TypeCache typeCache, Cache cache ) : object
StoreValue ( Element element, object serialized, object source, TypeCache typeCache, Cache cache ) : void

메소드 상세

PersistentPathAttribute() 공개 메소드

Initializes a new instance of the PersistentPathAttribute class.
public PersistentPathAttribute ( string query, string createQuery ) : System
query string The query to use for fetching the value. If the specified /// query returns a sequence, only the first item is used. If the specified query returns /// a node, it's value is used. If the specified query returns an atomic value, it's /// ToString() result is used as the value.
createQuery string The query to use when the field or property is being /// stored and the value query does not result in a node. If the value query does not result /// in a node and this is not specified, a value will not be stored for the /// field or property.
리턴 System