I need to create WebMethod that will get some data from db and return that to the client.
Now, assume that the amount of data is huge, so I'd like to take and return data in parts.
is there any way to use yield return in Webmethod?
as I know there is no way to return generic types in WebMethods but I couldn't use non-generic IEnumerable as well...
Gimme pls, some idea how to accomplish that...