Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MVC4。
我创建了一个 LINQ 语句来检查数据库表中是否存在 2 个输入值,即登录名和 Skype 名称。
现在我想从数据库中提取第三个字段并将其显示在屏幕上。
有任何想法吗?
如果你给我们代码你尝试过的东西会让我们更好地理解。据我了解,您可以使用此示例并根据您的需要进行更改。
var field = from item in db.xyz where item.firstfields == firstinputfields && item.secondfields == secondinputfields select item.thirdfields;