glazkovalex commented on issue #640:
URL: https://github.com/apache/age/issues/640#issuecomment-1849068266

   > Hi. I've created an AGE driver for .NET, and it currently supports only 
.NET 8 ...
   > ...
   > Your contributions and suggestions are welcomed 😄.
   
   @Allison-E, hellow!
   A very interesting project! 
   Support.Net.Standard is completely optional, since Npgsql.Entity Framework 
is Core.PostgreSQL is still under .Net 8. 
   It would be very useful to support Linq in queries, that is, [hybrid queries 
to relational data and graph 
data](https://dev.to/dukeofhazardz/exploring-apache-age-hybrid-queries-49p8) in 
a single Linq query, as well as mapping the results to objects! So that you can 
combine a Linq query to relational data with a text subquery in the Cypher 
Query Language via [User-defined 
function](https://learn.microsoft.com/en-us/ef/core/querying/user-defined-function-mapping),
 
[EF.Functions](https://learn.microsoft.com/en-us/ef/core/querying/database-functions)
 and 
[Interceptors](https://learn.microsoft.com/en-us/ef/core/logging-events-diagnostics/interceptors).
 That is, so that the Entity Framework Core outputs, for example, these queries:
   
   
   ```demo=# SELECT p.name FROM Persons AS p WHERE p.id in (
   demo(# SELECT id FROM cypher('my_graph', $$
   demo$# MATCH (v:Person) RETURN v.id $$)
   demo(# AS (id int));
   ```
   ```
       name
   ------------
    "Daniel"
    "Emmanuel"
   (2 rows)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to