()
| 397 | public int Count => (int)Entries.CountDistinct; |
| 398 | |
| 399 | public IEnumerable<Row> Iter() => Entries.Entries.Select(entry => (Row)entry.Value); |
| 400 | |
| 401 | public Task<Row[]> RemoteQuery(string query) => |
| 402 | conn.RemoteQuery<Row>($"SELECT {RemoteTableName}.* FROM {RemoteTableName} {query}"); |
no outgoing calls