NOTE: This was excluded when compiling, Don't forget to watch. Part 8 | Employee Management System with .NET 8 Blazor Wasm & API kzbin.info/www/bejne/j2jcmauGj6-GgqM : adding user Profile : )😀
@Frank2tek6 ай бұрын
Finally a real developer doing real World stuff. Good Job 👍
@Netcode-Hub6 ай бұрын
😃
@mustafalattouf49046 ай бұрын
I just wanted to take a moment to express my gratitude for the incredible content you create on Blazor. Your videos are not just informative but also engaging and easy to follow. Your passion for teaching shines through, making the learning experience enjoyable and rewarding. Thank you for sharing your knowledge and helping so many of us navigate the world of Blazor with confidence. Keep up the amazing work
@Netcode-Hub6 ай бұрын
🤩 😃 thanks Am glad you also liked it .
@helloyou1919 ай бұрын
Great video! Could you also add some time-marks so it's easier to navigate the video when you're interested in a certain topic? or for example if you want to revisit a certain part. (print functionality/ pdf-excel export functionality etc) Thanks!
@Netcode-Hub9 ай бұрын
Big task 😂 will see to it
@emptycode17829 ай бұрын
this video will blow up anyway , time mark will help a lot , thanks.@@Netcode-Hub
@Netcode-Hub9 ай бұрын
@emptycode1782 thanks 😊
@williambell45919 ай бұрын
I agree - chapters are always helpful! KZbin Studio, Davinci Resolve, Camtasia all allow the creating of chaptered videos...
@mrt79486 ай бұрын
It was really nice. I finished one hour and so far is it very good. Thank you very much.
@Netcode-Hub6 ай бұрын
Welcome 🤗 congratulations also
@ahmetsultan265 ай бұрын
Can you send me code please
@MiHe-g4r9 ай бұрын
time 9:00. u can change StartUp Project from Single start up to Multiple startup project and run both Server and Client on one click.
@Netcode-Hub9 ай бұрын
Yes , thank you 😊, but I do prefer the old method. Multiple project startup runs both even when you want refresh only one . I belief you known this , 😂
@SolitudeSA9 ай бұрын
Thanks for the video. I'm busy going through it. Subscribed too. Very informative.
@Netcode-Hub9 ай бұрын
Thanks for the sub!
@DJone4one8 ай бұрын
The project is cool. In my case, two of the NuGet packages you reference are faulty, one even has a security vulnerability. From the ServerLibrary. Microsoft.AspNetCore.Authentication.JwBearer (8.0.0) and System.IdentityModel.Tokens.Jwt (7.0.3) (security vulnerability) I have updated to the latest SDK. The error is now still a warning. And with .JwBearer the package for the project was not found. (There are no packages with this ID in the following sources Project folder/library-packs) And an error occurred during package recovery. There are newer versions of the packages, but they cannot be installed. I have VS 2022 17.8.6
@Netcode-Hub8 ай бұрын
Aww sorry, will conduct a research on that. Thanks for the notice.
@MariadeFatimaFerreira-ur7rw9 ай бұрын
Is there any module in this project that uses Accordion? Would you have something implementing a table with data?
@gauravsrivastava85045 ай бұрын
This is real Project, finally i got it really appreciate, thanks a lot, please make other explained project like this in future. Thanks
@Netcode-Hub5 ай бұрын
Kindly check the channel , there are a lot
@weneedlittlepatience7 ай бұрын
great video, also your voice sounds really friendly and chill, good job
@Netcode-Hub7 ай бұрын
😂 thanks 😊
@DannyManny26722 күн бұрын
can you please give me the correct code line in Serializations in client library/helpers? because it's not fully shown on the screen and it says that i'm missing an argument public static IList DeserializeJsonStringList(string jsonString) => JsonSerializer.Deserialize(jsonString); Thank you!
@Netcode-Hub21 күн бұрын
using System.Text.Json; namespace ClientLibrary.Helpers { public static class Serializations { public static string SerializeObj(T modelObject) => JsonSerializer.Serialize(modelObject); public static T DeserializeJsonString(string jsonString) => JsonSerializer.Deserialize(jsonString)!; public static IList DeserializeJsonStringList(string jsonString) => JsonSerializer.Deserialize(jsonString)!; } }
@DannyManny26721 күн бұрын
@@Netcode-Hub thank you so much for this tutorial and also for the prompt response!!
@azizullahali37089 ай бұрын
Hello, I am planning to follow this lecture, Please give answers of my questions 1)Did u use .Net core web api with three layer architecture for API? 2)Which Database did u use? Thanks in advance.
@Netcode-Hub9 ай бұрын
Thus three tier architecture Data access Domain Presentation
@hugoluiz23535 ай бұрын
This guy is doing god's work really
@Netcode-Hub5 ай бұрын
😃
@timv95958 ай бұрын
This should not be free. Thank you so much for this. Learning a ton !
@Netcode-Hub8 ай бұрын
😃
@UncleDavid7 ай бұрын
relax
@AngelJrOrtegaVe8 ай бұрын
excelente, estoy ocupado pero lo guarde para observar tu trabajo me suscribi.. exito
@Netcode-Hub8 ай бұрын
Thanks 😊 at least I could see excellent in your message though I do not understand. 😂
@AngelJrOrtegaVe8 ай бұрын
😄😂@@Netcode-Hub
@quyettranvu58464 ай бұрын
Good day! Your video has good quality in depth but now I'm getting errors at cors even I set in server, I keep getting this in Safari: "Failed to fetch Api due to control check". I also tried on other browsers and still errors. What should I do now, even I put: builder.Services.Add and builder.Cors in correct order.
@Netcode-Hub4 ай бұрын
Hy sorry for having winch error , try in on windows devise if possible because the error is from your machine. I guess so
@SamvelDavtyan20047 ай бұрын
Hello Sir, first of all good job. I have a question for you could you make this project Personal Finance Education Platform - Description: Create a personal finance education platform using C# and Entity Framework. The platform will offer courses, tutorials, and resources to help users improve their financial literacy and make better financial decisions. It will involve C# basics and object-oriented programming techniques. I need it for my exam that is in 5th April(for money of course)
@Netcode-Hub7 ай бұрын
If you need any customization, kindly mail me . Check the video description
@SamvelDavtyan20047 ай бұрын
@@Netcode-Hub If I buy the source code I get the whole project, with c# entity framework and sql right ?
@Netcode-Hub7 ай бұрын
@avocado7904 yes 👍
@ybleeLee8 ай бұрын
Please help me. When you run PM> Add-Migration First -o Data/Migrations around 4:53:00 in the video, the error "The specified deps.json [omitted] does not exist" occurs and you cannot enter the code anymore. After "cleaning up the solution" and "rebuilding the solution" as instructed in the video, I specified the default project as "ServerLibrary" in the package manager console, but an error occurred, so I rebooted the PC, opened the solution again, and ran the command, but the same error persisted. occurs. "The specified deps.json [omitted] does not exist" What should I do?
@Netcode-Hub8 ай бұрын
Clean project Rebuild Delete old migration folder Apply new one If you need special assistance then mail me
@anghuynh31198 ай бұрын
I have the same error like you. May be you should try set the Server as startup project and run the command. I do like that and it OK :D
@Netcode-Hub8 ай бұрын
Thus great
@firmanchandraalamsyah70118 ай бұрын
@@anghuynh3119great thank u save my life
@chuckt59309 ай бұрын
Let me deep dive this looks interesting Blazor seems like its taking off
@Netcode-Hub9 ай бұрын
Sure
@РустамЗайнуллин-ь5п7 ай бұрын
Thanks for the video. Where is NavManager declared?
@Netcode-Hub7 ай бұрын
import.razor
@YahuuDude6 ай бұрын
Awesome! You are rock!
@Netcode-Hub6 ай бұрын
Thanks! You too!
@YoremizUrunleri5 ай бұрын
@albatu software explains Blazor at a very advanced level.
@Netcode-Hub5 ай бұрын
😃
@MariadeFatimaFerreira-ur7rw9 ай бұрын
Hi, your project example is wonderful... I want to acquire it, I'm only concerned about the Syncfusion issue, what would that be like?
@Netcode-Hub9 ай бұрын
You can claim free community Lisence key and use . kzbin.info/www/bejne/f5mpZ2l_et6plZosi=u_HaOC_h-d98rTve
@MariadeFatimaFerreira-ur7rw9 ай бұрын
Hi friend, I'm sad because I did everything to activate my Syncfusion license, but until now I can't run the application... I followed the link you sent, but it didn't solve anything
@Netcode-Hub9 ай бұрын
@MariadeFatimaFerreira-ur7rw can you push your code to GitHub and send the link to me for help?
@ybleeLee8 ай бұрын
I have a question at 3:35:04 of your video. In this part, I added the @layout MainLayout code to the HomePage.razor source like the teacher, but the left side menu is still not visible on my PC. The strange thing is that the value of 'collapseNavMenu' in the NavMenu.razor source code must be set to 'false' for the menu to appear. What part of the course did you miss?
@Netcode-Hub8 ай бұрын
Have you updated your bootstrap version ?
@ybleeLee8 ай бұрын
@@Netcode-HubThanks for your answer. Bootstrap version 5.3.2 and the settings are the same as in the video. The 'collapseNavMenu' value has been reset to its initial value of 'true'. If you run it by directly entering /home/dashboard in the URL, The side menu appears normally. However, when accessing through the login window, There is a bug where the side menu is not visible. So, Client > Pages > AccountPages > LoginPage.razor I modified the code as follows: It works like a video. --- async Task HandleLogin() { ShowLoadingButton = true; var result = await accountService.SignInAsync(User); if (result.Flag) { await DisplaDialog(result.Message, "Login Success"); var customAuthStateProvider = (CustomAuthenticationStateProvider)AuthStateProvider; await customAuthStateProvider.UpdateAuthenticationState(new UserSession() { Token = result.Token, RefreshToken = result.RefreshToken }); NavManager.NavigateTo("/home/dashboard", forceLoad: true); } else { await DisplaDialog(result.Message, "Alert"); } ShowLoadingButton = false; } If I change the navigation link from "/" to "/home/dashboard", it works normally.
@ybleeLee8 ай бұрын
@@Netcode-Hub Thanks for your answer. Bootstrap version 5.3.2 and the settings are the same as in the video. The 'collapseNavMenu' value has been reset to its initial value of 'true'. If you run it by directly entering /home/dashboard in the URL, The side menu appears normally. However, when accessing through the login window, There is a bug where the side menu is not visible. So, Client > Pages > AccountPages > LoginPage.razor I modified the code as follows: It works like a video. --- NavManager.NavigateTo("/home/dashboard", forceLoad: true); If I change the navigation link from "/" to "/home/dashboard", it works normally.
@ybleeLee8 ай бұрын
@@Netcode-Hubthank you. NavManager.NavigateTo("/home/dashboard", forceLoad: true); After modifying the link like this, it works normally.
@Netcode-Hub8 ай бұрын
You are genius 😂
@cissemy7 ай бұрын
Good Job You need to add attendance(clock in and clock out)
@Netcode-Hub7 ай бұрын
I belief you can add that feature
@cissemy7 ай бұрын
Yes
@littlekaori84037 ай бұрын
Thank you for your video ❤ I have a question, is it possible to have a permission based without using the identity package of Microsoft? Where you can dynamically add roles and select permissions based on roles. For example: Admin have access to everything, but the user can only view certain things but not create, update and delete.
@Netcode-Hub7 ай бұрын
Yes you can customize your own identity manager with use claims and use the claims to restrict users or give access
@debankurbhattacharjee30219 ай бұрын
hey bro the backend is awesome .. if possible make it in angular ! ... i think it will get more reach ... thanks once again
@Netcode-Hub9 ай бұрын
😂 Blazor is the future
@yanevans9 ай бұрын
yo bro! please can you make a vdeo where you explain and compare Blazor with other framework to see why Blazor is the future ? Thank you very much
@Netcode-Hub9 ай бұрын
@yanevans Blazor is a web framework that allows developers to build interactive web applications using C# and HTML, without relying on JavaScript. Blazor is based on WebAssembly, a technology that enables web browsers to run compiled code at near-native speed. Blazor has several advantages over other web frameworks, such as: - **Simplified development**: Blazor eliminates the need to learn multiple languages and frameworks, such as JavaScript, TypeScript, Angular, React, Vue, etc. Developers can use their existing C# and .NET skills to create full-stack web applications with a single code base and tooling. - **Improved performance**: Blazor leverages WebAssembly to run C# code directly in the browser, reducing the size and complexity of the JavaScript code. Blazor also supports server-side rendering, which improves the initial load time and SEO of web pages. - **Rich ecosystem**: Blazor benefits from the extensive and mature .NET ecosystem, which offers a wide range of libraries, tools, and services for web development. Blazor also integrates well with existing web standards and technologies, such as HTML, CSS, Bootstrap, SignalR, etc. Blazor is constantly evolving and adding new features and capabilities, such as Blazor Desktop, Blazor Hybrid, and Blazor Web View, which enable Blazor to run on desktop and mobile platforms. Blazor is also compatible with the latest .NET versions, such as .NET 8 and .NET MAUI, which provide more flexibility and productivity for web developers. I hope this helps you understand why Blazor is a great choice for web development. 😊
@yanevans9 ай бұрын
@@Netcode-Hub Nice! Thank you for the explanation😀
@hotwings93829 ай бұрын
Well done, I've done something similar using PHP
@Netcode-Hub9 ай бұрын
Wow 🤩 fantastic
@mwdztd6 ай бұрын
Sorry, for whatever reason my navbar links aren't showing up. Do you know where the start of that part is? I'm at 3:53: and had realized they didn't work for a bit but kept trying to go back and couldn't find it
@Netcode-Hub6 ай бұрын
Hy, sorry for having that error , you can grab the source code as guide, it has everything you need, if you need special assistance to you can also mail me. Check the video description.
@muhammadehtisham37302 ай бұрын
bro 😎 thank you so much for effort for everyone only one question (this code first approach?) thanks 🙏🏽
@Netcode-HubАй бұрын
Absolutely
@muhammadehtisham3730Ай бұрын
@@Netcode-Hub Sir unable to connect Server web server error please explain?
@asifjamal-m8g9 ай бұрын
Great Netcode hub genius. Thanks a lot.
@Netcode-Hub9 ай бұрын
Welcome bro 😎
@blackgsgo8 ай бұрын
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) can you help? the first command word Add-Migration... the problem is when i try update, thx i had sql on my pc, i just can't connect
@Netcode-Hub8 ай бұрын
Delete the migration folder and apply new migration if you have MySQL installed
@blackgsgo8 ай бұрын
@@Netcode-Hub thanks now works
@Netcode-Hub8 ай бұрын
Congratulations 🎊
@hiteshl7098 ай бұрын
are u using any UI third party library e.g syncfusion, devexpress? thank you
@Netcode-Hub8 ай бұрын
I used Syncfusion
@elopb2 ай бұрын
Hello! Excellent video, very complete, but I have a problem, in the "Serializations" class of ClientLibrery the complete code is not shown in the video, could you pass the code for that class please?
@Netcode-Hub2 ай бұрын
public static string SerializeObj(T modelObject) => JsonSerializer.Serialize(modelObject); public static T DeserializeJsonString(string jsonString) => JsonSerializer.Deserialize(jsonString)!; public static IList DeserializeJsonStringList(string jsonString) => JsonSerializer.Deserialize(jsonString)!;
@ferdiesapitula3292Ай бұрын
Hi sir, sorry for bothering you this, whats the entire code on 1:35:58 after the (jsonStrong) and ?? thank you
@Netcode-HubАй бұрын
check out: www.random.org/strings/
@kennytibele2033Ай бұрын
A great teacher, please be my mentor.
@Netcode-HubАй бұрын
I am always available to assist, you can mail me for personal discussion.
@ilhamriyandi33459 ай бұрын
Thanks for the tutorial, I am any question. How deploy this application on IIS?
@Netcode-Hub9 ай бұрын
Will look into that 😃
@Kabelo20023 ай бұрын
This is really good. Thank you 🙌
@Netcode-Hub3 ай бұрын
welcome. glad you liked it
@yaoj94078 ай бұрын
I subscribed immediately, you're doing a great job sir.
@Netcode-Hub8 ай бұрын
Thanks 😊
@jianyupeng49384 ай бұрын
Thank you sir for this comprehensive project, appreciate your work!!! Could you also make another video for deployment process?
@Netcode-Hub4 ай бұрын
Alright , 😃 will look into that
@amohsyn5 ай бұрын
I am forced to subscribe you, Thank you so much for a real content.
@Netcode-Hub5 ай бұрын
😃
@ybleeLee9 ай бұрын
thank you so much. We are following your live coding exactly. However, I get an error at 1:23:11. Where can I download the source code?
@Netcode-Hub9 ай бұрын
Check the video description
@orjisamuelobinna97649 ай бұрын
You just earn a subscriber. Great work sir
@Netcode-Hub9 ай бұрын
Welcome 🤗 A lot waiting … check playlist
@kadarirajashekar3 ай бұрын
I have just created the projects and run the application (Till 9:35) I am getting an error: "Process with an ID of ##### is not running," even though I have tried the following scenarios: 1st scenario: Deleting the .vs (hidden) folder 2nd scenario: Closing all instances of Visual Studio Renaming the IISExpress folder (in my case, it is located in C:\Users\jmelosegui\Documents) Adding the _CSRUN_DISABLE_WORKAROUNDS environment system variable with a value of 1
@Netcode-Hub3 ай бұрын
Have you run it through http or https ?
@DennisBassey3 ай бұрын
I had the same problem. Update visual studio, restart your system and run the project again. It worked for me.
@kadarirajashekar3 ай бұрын
@@Netcode-Hub I am experiencing same issue with http and https.
@Netcode-Hub3 ай бұрын
@@kadarirajashekar what issue please?
@kadarirajashekar3 ай бұрын
@@Netcode-Hub Process with an ID of ##### is not running
@dimasprasetyoutomo35859 ай бұрын
What is the software do you use? is that visual studio code?
@Netcode-Hub9 ай бұрын
Visual studio
@issakahniiarmahtagoe73392 ай бұрын
Thank you for the video. Nice one.
@Netcode-Hub2 ай бұрын
Welcome 🤗
@josemanuelmedinapalencia28616 ай бұрын
What kind of database are you using? Sorry if my question is stupid, but I am really new in C# and .NET.
@Netcode-Hub6 ай бұрын
Is good question okay? Using MySQL
@josemanuelmedinapalencia28616 ай бұрын
@@Netcode-Hub Thank you. You don't really have an idea of how much have you helped me in my studies.
@Jihaoui7 ай бұрын
bravo , great work
@Netcode-Hub7 ай бұрын
Thanks 🙏
@eliezerlorenzogarcia4129 ай бұрын
Hello, great video. That pattern used in the structure of folders and projects, what is it called?
@Netcode-Hub9 ай бұрын
The architecture used is custom architecture But it boils down to three -tier architecture Which has the domain, application and presentation layer
@eliezerlorenzogarcia4129 ай бұрын
Okay, thanks@@Netcode-Hub
@hiteshl7098 ай бұрын
is Source available for this project? then how and what repository? this awesome content. thank you
@Netcode-Hub8 ай бұрын
Kindly check the video description
@VladyslavHorbachov9 ай бұрын
Great video, bro. Keep doing videos like this👍👍👍👍👍👍
@Netcode-Hub9 ай бұрын
Thanks 😊
@srikantamishra12917 ай бұрын
Subscribed sir❤
@Netcode-Hub7 ай бұрын
😂
@netrunner19878 ай бұрын
so, how much of a pain would it be to move this project into a clean architecture?
@Netcode-Hub8 ай бұрын
😮
@bacic1114 ай бұрын
Hello, very nice project, I got to the final part, it was an adventure to learn this. However, I encounter an issue at the end, I have tried to debug the problem but I cant see the end of it. After modifying the NavMenu, I dont see the Management Section.
@Netcode-Hub4 ай бұрын
Wow 😯. Serious. Sorry for having that error, I can’t really tell your problem. Try to check the state that display the management section, nav menu code etc… If you need special assistance, kindly mail me
@bacic1114 ай бұрын
@@Netcode-Hub I think i need to redo the CustomHttpHandler part, from what i gather, the admin role sees the same as a user role
@bacic1114 ай бұрын
Well, I had issues in CustomHttpHandler but something else, however, the reason I wasn't able to see the Management tab was because of
@Nxttee3 ай бұрын
Hello, my teacher. I would like you to help teach me more about this clip. I have been using what I learned from your clip to develop my project. Currently, I am having trouble logging in to verify the user's information. I would like the login to display the user's profile by connecting the ApplicationUser table and the Employee table using the same employee ID, so it shows the profile information. Do you have any solutions for me? I have been stuck on the authentication 401 error code for several days.
@Netcode-Hub3 ай бұрын
Kindly mail me for private discussion Check the video description for mail I will be happy to assist you 😃
@embossCoder9 ай бұрын
where did you get the properties value of "JwtSection" at 45:59?
@Netcode-Hub9 ай бұрын
Key: must be a unique key . You can get some from strings.com Issuer : this is the server Address : port Audience: this is the consumer address:port You can get these from Properties file in your project. 😊
@embossCoder9 ай бұрын
@@Netcode-Hub thank you for replying. Yes im a little bit confuse about the random strings for the key. Thank you for great videos.
@Netcode-Hub9 ай бұрын
@@embossCoder welcome 🤗
@wissamfawzy65433 ай бұрын
Nice work
@Netcode-Hub3 ай бұрын
Thanks 😊
@christiankinate96366 ай бұрын
This is Nice. Great Job
@Netcode-Hub6 ай бұрын
Thanks 😊
@kirayagami92299 ай бұрын
Nice video. Keep it up bro. Very helpful
@Netcode-Hub9 ай бұрын
Thanks ☺️
@williameisenman55389 ай бұрын
I downloaded the Source and it appears that you have some errors in your DB Migration scripts in the Server Libary. I am using .net 8 v8.0.101 and Visual Studio 2022 v17.8.5.
@Netcode-Hub9 ай бұрын
Delete the migration folder and apply new one ☝️
@sunilkumarpalai356317 күн бұрын
Dear Sir I Just Started This Tutorial I Have .Net 7.0, according to 7.0 added all the required nugget packages and everything is working fine . But Sever Project is showing security warning and swagger is not loading!
@Netcode-Hub17 күн бұрын
Ohk, have you added swagger service ?
@sunilkumarpalai356310 күн бұрын
Yes
@collinsnduhiu62656 ай бұрын
thanks for the video are the guidance session free or there is a price
@Netcode-Hub6 ай бұрын
😂 you will pay small token.
@collinsnduhiu62656 ай бұрын
@@Netcode-Hub 👍how much
@mayadiouf35224 ай бұрын
Hello, thank you very much for your work, thank you so much. However, I would like to know how to convert the platform into a Windows Forms desktop application, please?
@Netcode-Hub4 ай бұрын
😃
@smartprogrammingsolutions24838 ай бұрын
Great project thanks
@Netcode-Hub8 ай бұрын
Welcome 🤗
@HakSovannara-z4q8 ай бұрын
Hi, @Netcode-Hub I try to follow from your video but now i got the error with authenticationstate. it is not go to login page. Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100] Unhandled exception rendering component: Object reference not set to an instance of an object. System.NullReferenceException: Object reference not set to an instance of an object. at Client.Pages.AuthenticationPage.OnInitializedAsync() in D:\2-DOCUMENTS\Projects\EmployeeManagementSystem\Client\Pages\AuthenticationPage.razor:line 9 at Microsoft.AspNetCore.Components.ComponentBase.RunInitAndSetParametersAsync()
@Netcode-Hub8 ай бұрын
There is something wrong with the authentication page when trying to authenticate the user at first visit . So do check your authentication.razor page . You can grab the source code and compare. Check the video description for it. If you also need special assistance then mail me on business.netcodehub@gmail.com
@HakSovannara-z4q8 ай бұрын
@@Netcode-Hub Ok I'll check
@HakSovannara-z4q8 ай бұрын
This is my authentication page @page "/" @inject NavigationManager NavManager @code { [CascadingParameter] protected Task AuthenticationState { get; set; } protected async override Task OnInitializedAsync() { var user = (await AuthenticationState).User; if (user.Identity!.IsAuthenticated) NavManager.NavigateTo("/home/dashboard"); else NavManager.NavigateTo("/identity/account/login"); } }
@HakSovannara-z4q8 ай бұрын
@code { [CascadingParameter] protected Task AuthenticationState { get; set; } protected async override Task OnInitializedAsync() { var user = (await AuthenticationState).User; if (user.Identity! == null) NavManager.NavigateTo("/identity/account/login"); else NavManager.NavigateTo("/home/dashboard"); } } please check my code above is correct?
@nhannghianguyenchi46982 ай бұрын
Me too
@abualialamery23538 ай бұрын
Thanks 😊 When purchasing the source code, is it possible to obtain Query to create the database and tables and implement them directly from SQL?
@Netcode-Hub8 ай бұрын
Just apply migration , thus all you need
@abualialamery23538 ай бұрын
Is there a way to video install Net8 inside the project, because I already installed 7 before? @@Netcode-Hub
@Netcode-Hub7 ай бұрын
update your Visual Studio
@gadamgadam-p1p8 ай бұрын
Thanks. Very good.
@Netcode-Hub8 ай бұрын
Thank you too!
@NascimentoConstantino-li2bh9 ай бұрын
Haha thank you brother. This is Gold.
@Netcode-Hub9 ай бұрын
Haha 😂 golden
@miftahulislam53289 ай бұрын
I'm unable to run the server just get a pop saying my website isn't safe how do I fix this. I'm assuming I need to download the API how do I go about doing so ?
@Netcode-Hub9 ай бұрын
Are you running the app on http or https?
@miftahulislam53289 ай бұрын
Website now opens all though I can't download any nugent packages it states "invalid restore input, missing required property" I pasted in the package file in the server csproj file
@miftahulislam53289 ай бұрын
@@Netcode-Hub Website now opens all though I can't download any nugent packages it states "invalid restore input, missing required property" I pasted in the package file in the server csproj file
@Netcode-Hub9 ай бұрын
@@miftahulislam5328 Try to install the nugget package , don't paste them
@miftahulislam53289 ай бұрын
@@Netcode-Hub I tried installing them It sill does not work?
@AldoResendizRomero22 күн бұрын
wow wow wow at 11:25 where did you paste those references from? It seems this tutorial is not for me you make many assumptions buddy!
@Netcode-Hub21 күн бұрын
haha, is for you okay, tell me where you are missed
@RupeshPrajapati-po1rp4 ай бұрын
How can I access all image which you are used please tell me
@SuperSadgun7 ай бұрын
woah awesome explanation love ou
@Netcode-Hub7 ай бұрын
Glad you liked it!
@rvrunkillyow7165 ай бұрын
Arent those dependencies affect the code reused?
@Netcode-Hub5 ай бұрын
Which dependencies are you talking about ?
@MariadeFatimaFerreira-ur7rw9 ай бұрын
please help me to make the application work properly... I supplied the data from the different modules of the system, but when including an Employee, clicking on the Save button, it got stuck... it doesn't save the record, I tried to debug it but it doesn't work no: public async Task Insert(Employee item)
@Netcode-Hub9 ай бұрын
Push your code to GitHub and send the link
@RamyKassem-m5d7 ай бұрын
hey .. perfect work by the way but im just new on this and i already downloaded your code would you plz help me with a details about your instrauctions STEPS TO FOLLOW 1. Extract the zip file into visual studio project solution. 2. Clean/Build project/solution with internet connection first to update all Nugget packages. 3. Update Migration [Update-Database] in Console Manager. 4. Run the Server. 5. Run the Client. Thus all. Start using... thanks
@RamyKassem-m5d7 ай бұрын
update all Nugget packages done but manually would you please explain how could i Update Migration [Update-Database] in Console Manager
@Netcode-Hub7 ай бұрын
Go to Tools => Nugget Package Manager => package manager console and type in “update-Database”
@Netcode-Hub7 ай бұрын
If you need special assistance, mail me
@AliM-x3i3 ай бұрын
Great video ❤ What was your db???
@Netcode-Hub3 ай бұрын
SqlServer
@godlevel-s3y9 ай бұрын
Hi, can you write a list of topics and basic concepts that you need to know to understand this video tutorial.
@Netcode-Hub9 ай бұрын
Will start tutorials on blazor soon 🔜 After watching them , you will be good to go 😃
@godlevel-s3y9 ай бұрын
And now there is some kind of list of basic topics for self-study to understand@@Netcode-Hub
@godlevel-s3y9 ай бұрын
And now is there any list of basic topics for self-study to understand?@@Netcode-Hub
@Netcode-Hub9 ай бұрын
.NET 8 Blazor for Beginners Series kzbin.info/aero/PL285LgYq_FoI2LFCSUTpc8PSkFkLxN7cB .NET 8 Blazor For Advance Series kzbin.info/aero/PL285LgYq_FoLljHw-9L0lUgWURvI9mXyg .NET 6 & 7 Blazor For Beginners kzbin.info/aero/PL285LgYq_FoLJyE2uVYMunCO1UGlh9rvu
@andersonwalker49909 ай бұрын
you earned a new subscriber 😉
@Netcode-Hub9 ай бұрын
Welcome 🙏 check the playlist . A lot waiting 😆
@elhalmihamza288 ай бұрын
great job, continue ......😍😍😍😍😍😍😍😍😍 X 100000000
@Netcode-Hub8 ай бұрын
😂
@j_p_f_G6 ай бұрын
Great video, trying to follow up and get it running. The client is causing an error at 2:15. Error: One or more errors occurred. (Cannot instantiate implementation type 'ClientLibrary.Services.Contracts.IUserAccountService' for service type 'ClientLibrary.Services.Contracts.IUserAccountService'.) Can you please give advice how to get rid of this error?
@Netcode-Hub6 ай бұрын
everything works, sorry you are having this error, you can grab the source code as guide. if you need special assistance then mail me. Check the video description.
@j_p_f_G6 ай бұрын
Thanks again for your private tutor session.
@Netcode-Hub6 ай бұрын
@j_p_f_G my pleasure 😇
@not_amanullah7 ай бұрын
Thanks ❤
@Netcode-Hub7 ай бұрын
Welcome 🤗
@imbydlo15528 ай бұрын
Very nice! Can you make game in blazor? For example online chess. It would be greatly
@Netcode-Hub8 ай бұрын
Haha
@IbraheemAmeen-n4t3 ай бұрын
pls can u make a video on hw to handle one to many and many to many relationship using a form
@Netcode-Hub3 ай бұрын
Check out this playlist, got you covered: kzbin.info/aero/PL285LgYq_FoJXTJXQAgfjPzMi2aT3lRMd
@mesutdemirci42516 ай бұрын
Thanks for the video.
@Netcode-Hub6 ай бұрын
😃
@marvz64138 ай бұрын
Nice Video, Very informative, I already subcribed.
@Netcode-Hub8 ай бұрын
Great 😊 👍
@podieka56887 ай бұрын
is this suitable for a beginner?
@Netcode-Hub7 ай бұрын
Absolutely
@myduruavinash15809 ай бұрын
Greater greatest🎊
@Netcode-Hub9 ай бұрын
😂 thanks bro
@lequochung36623 күн бұрын
Is it difficult to publish the application if we create too many projects?
@Netcode-Hub22 күн бұрын
No it’s not
@halfaify92247 ай бұрын
the following erorr "process with an ip of 23256 in not running" is showning, how can i fix it?
@Netcode-Hub7 ай бұрын
This is coming from your visual studio, try restarting the computer and the IDE
@yinkaadeyemi95839 ай бұрын
Great work, boss. How can I reach you ? Email?
@Netcode-Hub9 ай бұрын
business.netcodehub@gmail.com
@MariadeFatimaFerreira-ur7rw9 ай бұрын
Hello, how can I send you an image of an error when accessing the system?
@Netcode-Hub9 ай бұрын
What error are you having ?
@codewithved8 ай бұрын
great video
@Netcode-Hub8 ай бұрын
Thanks 😊
@not_amanullah7 ай бұрын
This is helpful ❤
@Netcode-Hub7 ай бұрын
Glad it was helpful!
@berkayaydn49136 ай бұрын
Ican not find which github repo you used for project man
@Netcode-Hub6 ай бұрын
😂 check the description
@berkayaydn49136 ай бұрын
@@Netcode-Hub i m guessing you are selling the source code?
@lucesays9 ай бұрын
Around the hour mark but I suddenly encountered an error on Swagger UI. Error 400? ConfirmPassword and Password doesnt match apparently.... :(
@Netcode-Hub9 ай бұрын
Sorry, have you checked your model validation ?
@umutcanalcan34958 ай бұрын
thanks😄
@Netcode-Hub8 ай бұрын
Welcome 🤗
@AhmadSa-u5h6 ай бұрын
what prequestes i need to start with this project ?
@Netcode-Hub6 ай бұрын
Just Blazor basics
@AhmadSa-u5h6 ай бұрын
@@Netcode-Hub so this application is only front end or frontend with backend , i know C# , sql , linq , ef core can i start this tutorial ? thanks for your time
@Netcode-Hub6 ай бұрын
@@AhmadSa-u5h 😃
@quochuyo29993 ай бұрын
thank you !!! can you have course .NET ? i need to pay it
@Netcode-Hub3 ай бұрын
Welcome 🤗 Which course do you need, kindly mail me , check the video description for mail