带有可变表名的linq查询

带有可变表名的linq查询

本文介绍了带有可变表名的linq查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

string table_name = "mpmeter"
var q = from c in &table_name
        where c.ckol==14
        select c;


不响应:& table_name


Not responce: &table_name

推荐答案


这篇关于带有可变表名的linq查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 00:34