Reputation: 548
To use columnar store extension of PostgreSQL, foreign tables are created... Can Npgsql read from such tables? If yes, is it similar to reading from traditional tables?
Upvotes: 0
Views: 58
Reputation: 246788
Yes, that should work fine.
No matter what the foreign data wrapper is, foreign tables behave just like normal PostgreSQL tables (at least when you read from them), so Npgsql won't even notice the difference.
Upvotes: 0