我想问是否可以通过 webget 参数选择实体数据库表?这是它的样子:
[WebGet]
public IQueryable<TestTable> GetAllCallers(string select, string **table**)
{
//testCDREntities context = this.CurrentDataSource;
var Callers = from d in this.CurrentDataSource.**table**
select d ;
return Callers;
}
当然这不起作用,但有没有办法让它起作用?我希望有人可以帮助我:)