本文介绍了“?"的目的是什么? strfilter的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您能解释"strfilter"的目的吗?

Can you explain the purpose of "strfilter"?

推荐答案


string StrFilter = "ParentId="+Convert.ToString(parentid);



然后对于样本,如果您想在父母ID = 3上找到,则格式化后的字符串将是.



Then for the sample if your you want to find on parant id = 3 then your formatted string will be.

StrFilter = "ParentId=3";



将过滤器应用于数据表后,您将获得所有具有ParentId = 3的行.

希望您现在对此很清楚.



After applying filter to datatable you will get all the rows having ParentId = 3.

I hope you''re quite clear with it now.


这篇关于“?"的目的是什么? strfilter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 00:04