This is my SQL Query
SELECT Costs.costkey, Costs.owner, Costs.costcategory, Costs.costamount, Costs.costdesc, Costs.costdate, costypes.costcategory AS CAT,
[user].username
FROM Costs INNER JOIN
costypes ON Costs.costcategory = costypes.costtypekey INNER JOIN
[user] ON Costs.owner = [user].userkey
What i would like to be able to do Is execute this query in LLb
I have looked but i am not getting it, sorry guy its probley obvious.
I am using a collection in a winforms situation
so my inital code for binding is:
Dim CostFilter As PredicateExpression = New PredicateExpression()
CostFilter.Add(CostsFields.Costcategory = Me.RadComboBox1.SelectedValue)
Me.CostsCollection1.GetMulti(CostFilter)
But i need the username value not just the user key thats in the collection, if you can see what I mean.
Thanks
Jason