3 overrides of TryGetDatabaseKey
Microsoft.CodeAnalysis.Workspaces (3)
Storage\SQLite\v2\SQLitePersistentStorage_DocumentSerialization.cs (1)
39protected override DocumentPrimaryKey? TryGetDatabaseKey(SqlConnection connection, DocumentKey key, bool allowWrite)
Storage\SQLite\v2\SQLitePersistentStorage_ProjectSerialization.cs (1)
37protected override ProjectPrimaryKey? TryGetDatabaseKey(SqlConnection connection, ProjectKey projectKey, bool allowWrite)
Storage\SQLite\v2\SQLitePersistentStorage_SolutionSerialization.cs (1)
38protected override SolutionPrimaryKey? TryGetDatabaseKey(SqlConnection connection, SolutionKey key, bool allowWrite)
2 references to TryGetDatabaseKey
Microsoft.CodeAnalysis.Workspaces (2)
Storage\SQLite\v2\SQLitePersistentStorage.Accessor.cs (2)
179if (TryGetDatabaseKey(connection, key, allowWrite: false) is TDatabaseKey databaseKey && 236if (TryGetDatabaseKey(connection, key, allowWrite: true) is TDatabaseKey databaseKey &&