Lazy loading comes by default in Linq, you can not turn it off. You can although do an explicit loading by doing a ToList() or ToArray(), which essentially iterates over the returned object so that a list or array is created.
Or you can also do a foreach just after the query so that the query is executed.
Both cases are actually making the query execute immediately.