Thank you very much! Finally, thanks to your video tutorial, I understood this topic!)
@dexcodelab10 ай бұрын
You're welcome. Glad it helped!
@vuThien263Ай бұрын
Tks bro ur video step by step is very easy to understand
@dexcodelabАй бұрын
I'm glad it helped you
@msdhonicoolcaptainАй бұрын
Thank you Salman, this video is really helpful. I have subscribed your channel.
@dexcodelabАй бұрын
You're welcome sir, I'll try to make more helpful videos, and thats for liking and subscribing
@ekremozafsar2875 Жыл бұрын
Thank u man keep going!
@dexcodelab Жыл бұрын
You're welcome
@sangeethalakshmanathilagar9723Ай бұрын
Hi Thank you so much your video is very helpful for me as a beginner in MVC . I have a doubt I want the database to read the null columns and rows also . I tried different codes it is not working and also I want the reader to read from a particular row . For example to start to read the excel file from row 10. Thank you.
@dexcodelabАй бұрын
The nuget package used in the video has 2 methods to read excel. If you want to read value of row 10 then go to 17:50 of the video. At 17:50 you can see the sample code by the developers, you have to use method 2. That will copy all values of excel in datatable and feom datatable you can directly access the cell. For you first query i need more information. There should be no issue in reading null values. If you're getting some error please share that as well.
@pamodpeiris1548 ай бұрын
Very good explanation. Short and clear.
@dexcodelab8 ай бұрын
Glad you liked it
@aliyousef47554 ай бұрын
very organized and clear, Thank you🙏
@dexcodelab4 ай бұрын
Glad it was helpful!
@namessis7 ай бұрын
Amazing thanks for your labor and solution. !!! We are excitedly waiting for content.
@dexcodelab7 ай бұрын
Thankyou for liking the content, will try to upload more helpful content in future
@myti16179 ай бұрын
that was perfect
@dexcodelab9 ай бұрын
Thankyou sir
@juliuszhu91238 ай бұрын
nice job! thanks for doing this.
@dexcodelab8 ай бұрын
My pleasure!
@bipinlal172410 ай бұрын
Very good video, really understood. data can be saved very 👍👍👍👍
@dexcodelab10 ай бұрын
Thank you sir
@raziuddinmohd Жыл бұрын
Nice explanation..very useful
@dexcodelab Жыл бұрын
Thank you sir
@thecyberhelp17 ай бұрын
Thanku bro this solution is best one
@dexcodelab7 ай бұрын
You're welcome
@hoangheo2505 Жыл бұрын
thanks you for tutorial ^^
@dexcodelab Жыл бұрын
You're welcome 😊
@hieuang798 ай бұрын
Thank you very much!
@dexcodelab8 ай бұрын
You're welcome sir
@DanishFarhan-wg3xz11 күн бұрын
can i use this for core 8?
@dexcodelab10 күн бұрын
Yes you can.
@MithileshKumar-c1g Жыл бұрын
Please make video for bulk insert from excel to sql server like 1m row insert at one click
@dexcodelab9 ай бұрын
That sounds good! I'll keep it in mind for future content.
@tharun4939 Жыл бұрын
Is it with the validation too
@dexcodelab Жыл бұрын
Validation of?
@tharun4939 Жыл бұрын
@@dexcodelab SQL data types
@dexcodelab Жыл бұрын
Can you please share the exact error?
@randnas7 ай бұрын
How can I import data with more than one file to more than one table??
@dexcodelab7 ай бұрын
First make the html input tag to select multiple files. Second convert IFormFile to List files. Then loop through files and perform import operation on each file.
@ShanteshManure4 ай бұрын
FormatException: Input string was not in a correct format. mainExcelFile.PoNo = Convert.ToInt32(reader.GetValue(1).ToString());
@dexcodelab4 ай бұрын
I think the cell value is not numeric or its either null that why conversion has failed. Create a try catch block to skip the bad row or use int.TryParse method. Incase of bad row you can also put a hardcoded default value like 0 or make a list of all bad rows and at the end you can display data that is not inserted and has errors.
@bruhmanbruhmanzz Жыл бұрын
Can you do a video about export excel file from db?
@dexcodelab Жыл бұрын
I don't promise but i will try
@Sameyo_Rei11 ай бұрын
how to change it to Net core web APi
@dexcodelab11 ай бұрын
Sure, i will try to make a video for this
@Sameyo_Rei11 ай бұрын
@@dexcodelab thank you
@dexcodelab9 ай бұрын
welcome sir, New video with API is uploaded
@tharun4939 Жыл бұрын
I am getting an error can you please help me with that error 🙏
@dexcodelab Жыл бұрын
Where are you getting the error?
@tharun4939 Жыл бұрын
@@dexcodelab during the database app user creation
@dexcodelab Жыл бұрын
Can you please share the exact error?
@sunnyafran415 Жыл бұрын
I can't add import excel file to datagridview then save to database at the same project, you have uploaded two different tutorials ,please give a tutorial import excel file display DataGridView and save to database in same project without migration, please it's urgent.
@dexcodelab Жыл бұрын
Sorry, i have a busy schedule these days, once i will find time i will do it. Do you want it done with db first approach?