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();