Hi,I have a Table-Valued Function call "FnGetCustomByCountry",and i want to use it in linq query just like linq to sql style:
var custs=from c in metaData.FnGetCustomByCountry("UK")
where c.City=="London"
select c
I Didn't found The "Functions" in LLBLGen Desginer but i can see the "Stored Procedures".
I don't know is LLBLGen Pro support this feature,or can you tell me how to do?