I'd like to use graph datatables features from EF 6, but after a lot of research, it seems that it's not supported yet. Is stored procedures the only way to go using graph tables from EF at this moment?
Asked
Active
Viewed 897 times
2
-
1I'd stay away from EF if you want to use the graph features. Having said that, graph data is stored as normal tables so you should be able to query them as you would normal tabular data. – DavidG Sep 10 '18 at 23:46
-
1Thanks for pointing out David. I'm building an app that has a couple of graph tables, all others are relational, so I'm already using EF. I just want to do basic filtering on graph tables joined with relational one's. – Oscar Sep 11 '18 at 05:40
-
3You spurred me on to try and get graphing into EF Core and I started playing with a [fork of the code](https://github.com/WiredUK/EntityFrameworkCore)! It's actually working quite well and I've asked the EF Core team if it's something they would be interested in. There's a related [Github issue here](https://github.com/aspnet/EntityFrameworkCore/issues/8527#issuecomment-423489599). – DavidG Oct 09 '18 at 11:10