Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
275 views
in Technique[技术] by (71.8m points)

c# - How to post-process IQueryable fields in code without losing the expression sent to DB?

My asp.net core program exposes a GraphQL endpoint that is handled by HotChocolate. It naturally supports filtering/sorting that is translated to DB calls via IQueryable mechanism.

UI --(graph ql)--> HotChocolate --(IQueryable)--> Logic --(IQueryable)--> DB

Now in the logic layer I want to format some string in a property of the class. I can do that only in C# code. But if I materialize the IQueryable I have into an enumerable, I lose that translation. So I will always query for all items and will return an IEnumerable instead which will be manually filtered in-memory by HotChocolate:

UI --(graph ql)--> HotChocolate ==(IEnumerable)==> Logic ==(all items)==> DB

So how to "inject" the C# processing into IQueryable so that the filtering/sorting expression is preserved? I think I can do a visitor of sorts, but wouldn't that get translated into the DB call anyway? I assume there should be a straight-forward solution but I don't know who it's called?

question from:https://stackoverflow.com/questions/65952428/how-to-post-process-iqueryable-fields-in-code-without-losing-the-expression-sent

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Figured out that one way to achieve this would be to use AutoMapper's expression translation with OnEnumerated(): https://docs.automapper.org/en/stable/Expression-Translation-(UseAsDataSource).html

_dbSet.UseAsDataSource().For<DTO>().OnEnumerated((dtos) => /* mutate */);

AutoMapper does the basic translation when mapping, but this is available in a separate package and isn't discoverable.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...