vote up 0 vote down star

Is it possible to use SQL Server 2008 CROSS APPLY with LINQ-2-SQL?

Example SQL:

select d.dateCol, tvf.descr, tvf.value
from dateTable d
cross apply tvFunction(d.dt, 'anotherParam') tvf
where d.category='someCat'

CROSS APPLY enables using values from a table (dateTable in the example) as parameters to a tablevalue function. This is very usefull if you need do do a complex calculation (encapsulated in a table value function) for a range of inputs.

flag

62% accept rate

1 Answer

vote up 3 vote down

The only way to use it would be to wrap the above code in a stored procedure and wrap it with LINQ to SQL.

[)amien

link|flag
Of course that is a way to do it, or resort to a DbDataReader (which is what I did) – vzczc Oct 18 '08 at 15:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.