-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't apply the library while using reflection emit with dynamic linq #411
Comments
Hello @KhoiNguyenICT , Could you provide a full example of what you would want to do. It will help my developer to get started with your request as I'm not fully sure to understand it. Best Regards, Jon Performance Libraries Runtime Evaluation |
|
Hello @KhoiNguyenICT , If you wish we try to find a solution, we will need a full runnable project that contains the minimum code to reproduce it. |
Hi @JonathanMagnan |
Hello @KhoiNguyenICT , I tried a few examples with _dbContext.Add(obj);
_dbContext.SaveChanges();
var set = _dbContext.Set(type);
//var q2 = set.Where("Name == \"test\"");
//var q2 = set.WhereDynamic("x => x.Name == 'test'");
var q3 = set.SingleOrDefaultDynamic("x => x.Name == 'test'");
return Ok(_dbContext.Set(type)); Both libraries support IQueryable, so I'm not really sure how to reproduce this issue. |
Hello @KhoiNguyenICT Since our last conversation, we haven't heard from you. As mentioned in my previous message, both libraries support IQueryable. Don't hesitate to provide further information, so that we can help you better. Best regards, Jon |
@JonathanMagnan
|
@JonathanMagnan |
Sorry @KhoiNguyenICT , I do not understand what you want. |
@JonathanMagnan |
Hi!
Today, i use reflection emit for generate dynamic entity for entityframework.
But library cannot support type IQueryable for dynamic query
Can you give me a solution for this problem!
Thank you so much!
The text was updated successfully, but these errors were encountered: