Hello,
Is it possible to use TypedViews the same way as normal entities and collections in Linq to LLBLGen?
The following example is a normal entity and collection:
LinqMetaData MetaData = new LinqMetaData();
var q = (
from p in MetaData.ProductGroup
where p.Nivo == 1
select p
);
return ((ILLBLGenProQuery)q).Execute<ProductGroupCollection>();
Is it possible to make something like that using a typed view?
I've got the following typed view: VwInternetArtikelenToceloTypedView and the following row: VwInternetArtikelenToceloRow.
Now I'd like to have something like this:
var q = (
from p in MetaData.VwInternetArtikelenToceloTypedView
where p.Nivo == 1
select p
);
return q.ToList<VwInternetArtikelenToceloRow>();
I don't know if this is possible and if not is there another good solution to use a typed view with Linq to LLBLGen?