BalajiDharmaraj
Results
1
issues of
BalajiDharmaraj
How can i add table hint for each join? var query = new Query().FromRaw("Users with (nolock)") .Join("Authors", "Authors.Id", "Posts.AuthorId") .Where("Id", 1) .Where("Status", "Active"); will be: SELECT * FROM Users with...