query_TMEditSheet = _
From tm In Context_DomainService1TMTM.GetTMTMSQuery()
Where tm.tmsDate = MainPage.TimeSheetDateSelect_selectdate.Date
Where tm.tmsUserID = MainPage.user_userID
Using where two times like this means, AND/ ANDALSO/OR?
Using where twice would mean AND. Something like:
You would probably have the same effect by putting both conditions in the same
Wherestatement, like:but what you have is more readable IMO.