简体   繁体   中英

Build LINQ query from a string

I have string

var query = new StringBuilder();
query.Append("myDb.Holiday.FirstOrDefault()");

Can I generate the linq query from this?

Yes if you want to do it you have to write a parser yourself.

This awnser solves the linq OrderBy from string and from there you should be able to implement the rest of the functions you require.

This is a good implementation of that awnser.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM