This might accomplish what you're looking to do.
var mostPopularTopic = entityContainer.Topics
.OrderByDescending(t => t.Replies.Count())
.FirstOrDefault();
if(mostPopularTopic != null) // If there were any topics...
{
// ...
}
I imagine this is going to have terrible perf, tho.
A better option might be to denormalize your data (slightly) and add a reply count column to the Topic table. Then you can index that column, and do a simple sort and retrieve for row. This will avoid a whole table scan of Topics and a count (at query time) on every Replies entry.
The trade-off will be that you have to be careful to ensure that the Replies count always gets updated, or live with results that aren't always completely up to date and do a background job to rebuild these values.