我有一个名为lstParam
的ReportParameter列表,其值很少。
List<ReportParameter> lstParam = new List<ReportParameter>();
ReportParameter rpm = new ReportParameter();
rpm.Name = "Department";
rpm.Name = "Location";
lstParam.Add(rpm);
注意: ReportParameter is used from reporting services rdlobject model
现在我需要检查列表是否具有特定的字符串值,以下代码对“ReportParameter”列表不起作用。
var matchingvalues = !lstParam.Where(stringToCheck => stringToCheck.Contains(stringValue));
if (!lstParam.Any(str => str.Contains(stringValue)))
{
}
以上陈述均无效,我收到以下错误。
'ReportParameter' does not contain a definition for 'Contains' and the best extension
method overload 'Queryable.Contains<string>(IQueryable<string>,string)'
requires a receiver of type 'IQueryable<string>'
ReportParameter类:
public class ReportParameter : ReportObject, INamedObject
{
public ReportParameter();
[DefaultValue(false)]
public bool AllowBlank { get; set; }
public DataTypes DataType { get; set; }
public DefaultValue DefaultValue { get; set; }
[DefaultValue(false)]
public bool Hidden { get; set; }
[DefaultValue(false)]
public bool MultiValue { get; set; }
[XmlAttribute(typeof(string))]
public string Name { get; set; }
[DefaultValue(false)]
public bool Nullable { get; set; }
[ReportExpressionDefaultValueAttribute]
public ReportExpression Prompt { get; set; }
[DefaultValue("")]
[XmlChildAttributeAttribute("Prompt", "LocID", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner")]
public string PromptLocID { get; set; }
[DefaultValue(UsedInQueryTypes.Auto)]
public UsedInQueryTypes UsedInQuery { get; set; }
public ValidValues ValidValues { get; set; }
protected override bool RdlSemanticEqualsCore(ReportObject rdlObj, ICollection<ReportObject> visitedList);
}
真的很感激任何建议。
答案 0 :(得分:1)
如果您只想查看是否有任何项目符合您的条件,请试试此代码
bool matchingvalues = lstDSParameter.SelectMany(stringToCheck => stringToCheck.Name.Contains(stringValue) || stringToCheck.PromptLocID.Contains(stringValue)).ToList().Count > 0
答案 1 :(得分:1)
您描述了两个列表:lstParam
和lstDSParameter
。我认为这是一个拼写错误,它们是相同的列表。
lstParam
中的每个元素都是ReportParameter
类型。如果您使用Enumerable.Where
,则are子句中的每个项目都代表ReportParameter
。 ReportParameter不是字符串,因此您得到了您描述的编译器错误。
您说如果列表具有特定字符串值,则需要检查。
很明显,因为列表中没有字符串,所以没有。因此,我假设您需要检查序列中元素的某个属性是否包含特定的字符串值。我们假设您要检查序列中ReportParameters的任何名称是否包含特定的字符串值。
为此,您必须将序列中的每个元素转换为包含每个元素的Name值的字符串。在Linq中,只要您需要将序列中的元素转换为其他元素,就可以使用Enumerable.Select:
List<ReportParameter> lstParam = ...;
var reportParameterNames = lstParam.Select(reportParameter => reportParameter.Name);
&#34;从lstParam中的每个reportParameter获取reportParameter.Name,并将这些名称放在名为reportParameterNames&#34;
的新序列中现在检查是否有任何reportParameterNames等于你可以使用的SpecificStringValue
Enumerable.Any:
bool lstParamContainSpecificStringValue = reportParameterNames
.Any(name => name == SpecificStringValue);
&#34;检查reportParameterNames序列中的任何元素是否等于SpecificStringValue&#34;
This article帮助我了解LINQ,并了解了如何使用它
答案 2 :(得分:1)
您似乎正在使用错误命名空间中的ReportParameter
。尝试使用Microsoft.ReportingServices.ReportRendering Namespace中的那个。这个包含Value
属性。
所以你可以像这样使用它:
if (!lstParam.Any(p => p.Value?.ToString().Contains(stringValue)))
{
}
答案 3 :(得分:0)
查看问题this。
可能是反思可以帮到你。 我建议你先通过
循环 List<ReportParameter> lstParam = new List<ReportParameter>();
foreach(var item in lstParam )
{
//and then loop through class properties
Type type = item.GetType();
PropertyInfo[] properties = type.GetProperties();
foreach (PropertyInfo property in properties )
{
//now here you can play with class properties
//like property.Name or property.Value
//place your check here
}
}
我还没有测试过这段代码,只是建议你走的路。我希望这会有所帮助,试图找到一些其他有效的方法来摆脱循环。