Is it better to use crud inside blazor server or use crud ? what do you recommend. Which one is faster ?
@cissemy2 жыл бұрын
Great. How to add filtering and pagination to it ? Thanks
@maheshborse70492 жыл бұрын
Amazing tutorial.. Keep it up man..
@CodingJackpot2 жыл бұрын
Thanks for watching please subscribe for upcoming videos 😊
@netrunner19872 жыл бұрын
Great video. Easy to follow.
@CodingJackpot2 жыл бұрын
Thanks for watching
@fivepaprika40392 жыл бұрын
Hi there, great video, I have a question, is there a way with visual studio to share the program to anyone that doesn’t require visual studio to be installed, I’ve been trying to get it to work using exe files but can’t manage it, thanks 👍🏻
@CodingJackpot2 жыл бұрын
You can use visual studio code
@hintsoftware2 жыл бұрын
sir, can we also connect sql server directly from Blazor WASM without Web API ?
@geraldtoco60342 жыл бұрын
The answer is no for Blazor WASM.
@geraldtoco60342 жыл бұрын
Sorry I did not search if there's a way for this BUT it is because, even if you can, you shouldn't, because the assemblies and your dlls are downloaded to the client's device.
@CodingJackpot2 жыл бұрын
yes this should be our approach as we should try to keep our dlls light weight
@geraldtoco60342 жыл бұрын
You won't need to create a separate web api to handle your persistence if you are using blazor server.
@CodingJackpot2 жыл бұрын
For scalablity purpose if we want to host our api on different server than we may use it .. also it depends what is the scope of the project
@geraldtoco60342 жыл бұрын
@@CodingJackpot But that's not the purpose of the video, is it? For learning purposes, blazor server, by default, does not need a web api to do CRUD operations.
@fivepaprika40392 жыл бұрын
Hi there, great video, I have a question, is there a way with visual studio to share the program to anyone that doesn’t require visual studio to be installed, I’ve been trying to get it to work using exe files but can’t manage it, thanks 👍🏻
@CodingJackpot2 жыл бұрын
If they don't want to use visual studio they can use visual studio code which is a lighter version but there may be compilation errors if the visual studio code is not setup properly but to compile the code and run it will require visual studio as it's a web project and not desktop application
@fivepaprika40392 жыл бұрын
@@CodingJackpot Thanks so much, so just to be clear there is no way that I can send a program to anyone else for them to run, without installing anything?
@CodingJackpot2 жыл бұрын
yes the receiver will need to required software's to run