Hi,
if I do this...
rowNames = _myDB.RowSet.Where(r => (r.RowId >= minId) && (r.RowId <= maxId))
.Select(r => r.RowName);
it returns an IQueryable, how can I put this into: string[] myStringArray
?