c# – 如何在List中使用“Contain”?

前端之家收集整理的这篇文章主要介绍了c# – 如何在List中使用“Contain”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有国家数据库喜欢,
Country
-------
England
Germany
Italy
...

我得到这个数据源,

DB.Countries.ToList();

我想要做的是检查新添加的国家是否已经存在,
只是喜欢,

if(DB.Countries.ToList().Contains(newAddedCountry))
{
 ..............
}

但我不知道如何将newAddedCountry(string)转换为System.Collections.Generic.List< Country> .

解决方法

if(DB.Countries.Any(c => c.Country == newAddedCountry))
{
    // exists ..
}
原文链接:https://www.f2er.com/csharp/98861.html

猜你在找的C#相关文章