我的Queries类中有2个属性。
string comboBoxFilterQuery { get { return "some query"; } }
和
//Property in question that has a WHERE clause in the query
string reportQuery { get {return "some query with parameter";} }
是否可以将参数传递给上述属性的Get方法以在查询中使用?该查询有一个Where子句,我希望该子句是传入的任何内容。
如果没有,完成此任务的正确方法是什么?