Hi
LLBGen 3.5 Latest Build , downloaded today.. Generating adapter , defaults everything else. SQL Server.
Trying to use Linq & had problem since upgrading to 3.5 - it doesnt seem to be generating the code correctly or something. I have never had any problems like this before. tried generating everything frmo scratch too..
Inner Exception:
{"The multi-part identifier \".LPFA_1\" could not be bound."}
Query: SELECT [LPLA_1].[BatchID] AS [BatchId], [LPLA_1].[Date], [LPLA_1].[Amount], [LPLA_1].[Cur] FROM [Artoo].[dbo].[BankTransactions] [LPLA_1]
WHERE ( ( ( ( ( .[LPFA_1] = @p2)))))
Parameter: @p2 : Boolean. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: True.
linq used -
var batches = from b in linq.BankTransaction
where b.AccountId == AccountID
& b.Date >= dateFrom.Value
& b.Date <= DateTo.Value
& b.BatchId == null
select new { b.BatchId, b.Date, b.Amount, b.Cur };