Hi,
I have a question on sql query that need to be written in Linq style.
For the query i need to take the max number which is 1000 but when i query using max() i keep getting 999 value.
How can i get 1000 as max in Linq.
Below is sample for my requester_id:
FY21_997, FY21_998, FY21_999, FY21_1000
The sql query looks like this when to select 1000 from sql query
select max(cast((substring(Requester_id, 6,99)) as int)) from Requester