コード例 #1
0
ファイル: DynamicEntity.cs プロジェクト: hsrobmln/CypherNet
 protected internal DynamicEntity(object properties)
 {
     _storage = CachedDictionaryPropertiesProvider.LoadProperties(properties);
 }
コード例 #2
0
ファイル: DynamicEntity.cs プロジェクト: sundhaug92/CypherNet
        IEnumerable <KeyValuePair <string, object> > IDynamicMetaData.GetAllValues()
        {
            var props = CachedDictionaryPropertiesProvider.LoadProperties(this);

            return(_storage.AsEnumerable().Union(props));
        }