如何在 Linq To SQL 中知道字段是否为数字

How to know if a field is numeric in Linq To SQL(如何在 Linq To SQL 中知道字段是否为数字)
本文介绍了如何在 Linq To SQL 中知道字段是否为数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我需要选择列值为数字的表的行,有什么帮助吗?

I need to select the rows of a table where a column value is numeric, any Help?

我有一个 varchar 列,我需要选择哪些是数字,哪些不是.

I have a varchar column and I need to select the ones that are numbers and the ones that are not.

EDIT 2: Integer.TryParse 不能使用,因为它不能转换为 SQL.

EDIT 2: Integer.TryParse cannot be use because it cannot be translate to SQL.

推荐答案

我不知道 LinqToSQL 中是否有 int.TryParse() 的映射,但是您可以通过执行查询分两步完成,转换为列表,然后使用 LinqToObjects 从列表中选择.

I don't know if there is a mapping for int.TryParse() in LinqToSQL, but you could probably do it in two steps by performing the query, casting to a List, then selecting out of the list with LinqToObjects.

int i;
var query = context.Table.ToList();
var intQuery = query.Where( t => int.TryParse( t.Column, out i ) );

你可能想看看 动态 LINQ,也是.这将允许您执行以下操作:

You might want to look at Dynamic LINQ, too. That would allow you to do something like:

var query = context.Table.Where( "IsNumeric(Column)" );

编辑 VS2008 代码示例中提供了动态 LINQ,链接来自 Scott Guthrie 的博客,我已在上面链接.

EDIT Dynamic LINQ is available in the VS2008 Code Samples, linked to from Scott Guthrie's blog, which I've linked above.

这篇关于如何在 Linq To SQL 中知道字段是否为数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Is Unpivot (Not Pivot) functionality available in Linq to SQL? How?(Linq to SQL 中是否提供 Unpivot(非 Pivot)功能?如何?)
Linq2SQl eager load with multiple DataLoadOptions(具有多个 DataLoadOptions 的 Linq2SQl 急切加载)
Extract sql query from LINQ expressions(从 LINQ 表达式中提取 sql 查询)
LINQ Where in collection clause(LINQ Where in collection 子句)
Orderby() not ordering numbers correctly c#(Orderby() 没有正确排序数字 c#)
Why do I get quot;error: ... must be a reference typequot; in my C# generic method?(为什么我会收到“错误:...必须是引用类型?在我的 C# 泛型方法中?)