I have a AccessEvent table with the fields like DocumentId,EventDateTime,AccessType, etc. The AccessType can be Import,Export,Create,Delete,etc. I need to filter the AccessEvents by DocumentId and displayed in a grid. When a user selects an access event in the grid, I need to show the details of the event like import and export from another table. The details table has DocumentId,EventDateTime as keys. So I need to filter the details data based on the selected DocumentId and EventDateTime. I need a filter expression in LLBLgen to achieve this. Normal predicate with Equal(=) operator is not working. Also I have problems in Getting the TimeStamp value(22-NOV-11 01.13.05.679247000 PM) from unit tests and pass it to Filter expression. I never get the desired result. How to pass the above value as it is to LLBLGen Filter expression?
I have the unit test code as follows:
int documentId = 1008;
DateTime date1 = new DateTime(2011, 11, 22, 01, 14, 04, 610);
Call to BL:
DocumentBL.GetDetails(documentId, date1);
How to handle the TimeStamp parameter date1 inside the BL code and form a filter expression?