You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far, we couldn't do it, because methods with .Future() crashes as soon as dbContextOptions.UseProjectables() is setup on DbContext. Eveything else seems to works, AFAIK
I don't know if you ever used or touched this library, but it seems pretty awesome to implement simple Expression without all the hassle + it allows to use expression on standard use-cases like "FullName" and only fetching dependent properties from SQL (without fetching the entire object).
Ex: [NotMapped] [Projectable] public string FullName => $"{this.FirstName} {this.LastName}".Trim();
If there is a way to do the equivalent in the ZEntity Extensions, I'd like to know and if you ever have a bit of time to check the library and made it possible to use with yours, that would be awesome.
Thanks for your time,
J.S. Parent
The text was updated successfully, but these errors were encountered:
Unfortunately, we have nothing similar at the moment.
We will, in a few weeks/months, contact them to try to sponsor their library. At this time, we will check with them if something can be done to make both library compatible.
Hi! We're using a licensed version of your extensions (really useful btw!), and we were trying to incorporate Projectables in conjunction with it.
See https://github.com/koenbeuk/EntityFrameworkCore.Projectables
So far, we couldn't do it, because methods with .Future() crashes as soon as dbContextOptions.UseProjectables() is setup on DbContext. Eveything else seems to works, AFAIK
I don't know if you ever used or touched this library, but it seems pretty awesome to implement simple Expression without all the hassle + it allows to use expression on standard use-cases like "FullName" and only fetching dependent properties from SQL (without fetching the entire object).
Ex:
[NotMapped] [Projectable] public string FullName => $"{this.FirstName} {this.LastName}".Trim();
If there is a way to do the equivalent in the ZEntity Extensions, I'd like to know and if you ever have a bit of time to check the library and made it possible to use with yours, that would be awesome.
Thanks for your time,
J.S. Parent
The text was updated successfully, but these errors were encountered: