属性的Get方法可以获取参数吗?

时间:2016-05-13 14:17:20

标签: c# asp.net sql-server properties get

我的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子句,我希望该子句是传入的任何内容。

如果没有,完成此任务的正确方法是什么?

0 个答案:

没有答案