Check an example:
declare @Fields table (id int, polygons geometry)
insert @Fields values
( 660411001, 'POLYGON ((0 0, 150 0, 150 150, 0 150, 0 0))'),
( 660411002, 'POLYGON ((10 10, 130 10, 140 120, 0 150, 10 10))')
declare @Rivers table (id int, lines geometry)
insert @Rivers values
( 1, 'MULTILINESTRING((210 210, 300 330, 450 50))')
select * from @Fields
select * from @Rivers
select top(5) with ties r.*, f.polygons.STDistance(r.lines) as distance
from @Fields f, @Rivers r
where f.id = 660411001
order by f.polygons.STDistance(r.lines)