Expose PostgreSQL XML functions
From @roji on September 8, 2015 8:4
PostgreSQL supports xpath matching, which we can expose to the user when corresponding methods are used in the LINQ query. This would prevent the entire resultset from being pulled in to the client.
It may be a good idea to provide an opt-out for this in case there's trouble or client-side evaluation is preferred. At the query and model levels.
Copied from original issue: npgsql/npgsql#773
This has been around for a while. I'm going to take a run at for 2.2.0.
It's been around for a while, but it hasn't ever been requested by an actual user :) I suspect that with xml going out of fashion hardly anyone needs this...
I'd suggest concentrating our efforts elsewhere until this gets some votes etc...
Possibly relevant:
https://github.com/aspnet/EntityFrameworkCore/issues/12795#issuecomment-414330525
@roji Is there a way to access postgres XML functionality before this is implemented ?
Yes, use SQL queryinghttps://learn.microsoft.com/en-us/ef/core/querying/sql-queries?tabs=sqlserver.