Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string field PersNo on an entity Personnel containing characters and digits. I want strip the characters from that field and take the maximum number. GetQuery returns an IQueryable

The following code sample does this:

var result = _repository.GetQuery<Personnel>()
            .Select(t => t.PersNo)
            .ToList();


int max = result
            .Select(t => new string(t.Where(char.IsDigit).ToArray()))
            .Select(t => Int32.Parse(t))
            .Max();

The problem is a lot of data is send from the database to the server while I am only interested in the Max value. And the following code does not work for several reasons (because it is linq to objects)

int max = _repository.GetQuery<Personnel>()
                .Select(t => t.PersNo)
                .Select(t => new string(t.Where(char.IsDigit).ToArray()))
                .Select(t => Int32.Parse(t))
                .Max();

Is there an alternative in Linq to Entities which produces the same result ?

Update

One problem left !!!!
PersNo is parsed into an IEnumerable and it has to be transformed back into a string.

var max = _repository.GetQuery<Personnel>()
                .Select(t => new string((t.PersNo.Where(c => c >= '0' && c <= '9')).ToArray()))
                .Cast<int>()
                .Max();
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.