Select * from STK_Trans where STORETO =2199 and STOREFR = 2199 and TRANSDT BETWEEN ’01/01/2023′ AND ’01/05/2023′
Can anyone convert this sql comment to linq.
` from u in db.STK_Trans
where u.STORETO == stto &&
u.STOREFR == stid &&
(u.TRANSDT >= datefrom &&
u.TRANSDT <= dateto) select u;`
I use this but not working
New contributor
Hasan Mamun is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.