Here is my query which is not working. I have tried hard but what i am missing does'nt know. It gives error - "Object instance not created". Please help.
Dim tblNseFo As DataTable = gbl_dsNSEFOTrans.Tables(0)
Dim tblClient As DataTable = gbl_dsClientMaster.Tables(0)
Dim tblNseFoSymbol As DataTable = gbl_dsNseFoSymbolMaster.Tables(0)
Dim tblOption As DataTable = gbl_dsOptionType.Tables(0)
Dim query = (From n In tblNseFo _
Where n!client_id = intClientID _
Where n!trade_date = CDate(dtTradeDate) _
Where n!option_type_id = -1 _
Where n!trans_type_id <> 3 _
Order By n!serial_no _
Group Join c In tblClient On c!client_id Equals n!client_id Into cn = Group _
Group Join s In tblNseFoSymbol On s!symbol_id Equals n!symbol_id Into sn = Group _
Group Join o In tblOption On o!option_type_id Equals n!option_type_id Into op = Group _
From c In cn.DefaultIfEmpty _
From s In sn.DefaultIfEmpty _
From o In op.DefaultIfEmpty() _
Select New With { _
.serial_no = n!serial_no, _
.client_name = c!client_name, _
.symbol_name = s!symbol_name, _
.trade_date = n!trade_date, _
.option_type_name = o!option_type_name, _
.expiry_date = n!expiry_date, _
.strike_price = n!strike_price, _
.buy_qty = n!buy_qty, _
.buy_price = n!buy_price, _
.buy_value = n!buy_value, _
.sell_qty = n!sell_qty, _
.sell_price = n!sell_price, _
.sell_value = n!sell_value})