예제 #1
0
 public bool Exists(string id, out T value)
 {
     return(Exists(DatabaseElement.GenerateID(id), out value));
 }
예제 #2
0
 public T Read(string id, DatabaseLocationType type)
 {
     return(Read(DatabaseElement.GenerateID(id), type));
 }
예제 #3
0
        private string MakeFullPath(ulong id)
        {
            string s = fullPath + "\\" + DatabaseElement.GenerateHexIdentifier(id) + "." + DB_FILE_EXTENSION;

            return(s);
        }