https://youtu.be/b8fFRX0T38M?si=dWPlrHePneNm6yFd
السلام عليكم ورحمة الله وبركاته
كبداية في تعلم بناء API بواسطة الدوت نت فأنا انصحكم بهذا الفيديو
الشخص الذي تعلمت منه asp.net core
اليوم اشاهد انا وانتم احدث اصدار من التقنية وهو الاصدار الثامن ...
البيئة المستخدمة الفيجوال استديو 2022
طبعآ الفيديو يعتبر كورس كامل لبناء API تتعامل معا SQLserver.
كود المشروع مرفق في وصف الفيديو
تتميز asp.net core web api بسرعة عالية في البناء ومتانة واداء قويان
تستخدم لغة السي شارب الشهيرة
في الكورس استخدم تقنية Entity framework 8 للارتباط معا قاعدة البيانات
واستخدم نمط code first لبناء قاعدة البيانات من خلال كود سي شارب .
هناك نمط اخر يدعى database first ومن خلال قاعدة البيانات يقوم ببناء كود سي شارب .
اطلع على نماذج كورسات اخر للفهم اكثر
السلام عليكم ورحمة الله وبركاته
كبداية في تعلم بناء API بواسطة الدوت نت فأنا انصحكم بهذا الفيديو
الشخص الذي تعلمت منه asp.net core
اليوم اشاهد انا وانتم احدث اصدار من التقنية وهو الاصدار الثامن ...
البيئة المستخدمة الفيجوال استديو 2022
طبعآ الفيديو يعتبر كورس كامل لبناء API تتعامل معا SQLserver.
كود المشروع مرفق في وصف الفيديو
تتميز asp.net core web api بسرعة عالية في البناء ومتانة واداء قويان
تستخدم لغة السي شارب الشهيرة
في الكورس استخدم تقنية Entity framework 8 للارتباط معا قاعدة البيانات
واستخدم نمط code first لبناء قاعدة البيانات من خلال كود سي شارب .
هناك نمط اخر يدعى database first ومن خلال قاعدة البيانات يقوم ببناء كود سي شارب .
اطلع على نماذج كورسات اخر للفهم اكثر
YouTube
.NET 8 Web API & Entity Framework 🚀 Full CRUD Course (with Code-First Migrations & SQL Server)
🚀 Join the .NET Web Academy here: https://bit.ly/3AiEvFT
---
Table of Contents:
00:00 - .NET 8 Web API & Entity Framework
01:07 - Starting Off: Creating the Web API Project
02:43 - Exploring the Project: Detailed Project Overview
06:54 - Data Modeling: Creating…
---
Table of Contents:
00:00 - .NET 8 Web API & Entity Framework
01:07 - Starting Off: Creating the Web API Project
02:43 - Exploring the Project: Detailed Project Overview
06:54 - Data Modeling: Creating…
👍2🔥1
This media is not supported in your browser
VIEW IN TELEGRAM
اولأ يجب ان تعرف ما هي العمليات الناتجة عن بناء ال api او بمعنى اخر عمليات API
رابط المقال الاصلي لاحد المطورين المحترفين
https://www.linkedin.com/feed/update/urn:li:activity:7147838111039836160?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Ali%3Aactivity%3A7147838111039836160%29
رابط المقال الاصلي لاحد المطورين المحترفين
https://www.linkedin.com/feed/update/urn:li:activity:7147838111039836160?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Ali%3Aactivity%3A7147838111039836160%29
🔥1
ASP.net core web api
اولأ يجب ان تعرف ما هي العمليات الناتجة عن بناء ال api او بمعنى اخر عمليات API رابط المقال الاصلي لاحد المطورين المحترفين https://www.linkedin.com/feed/update/urn:li:activity:7147838111039836160?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Al…
1. HTTP GET
This retrieves a resource from the server. It is idempotent. Multiple identical requests return the same result.
2. HTTP PUT
This updates or Creates a resource. It is idempotent. Multiple identical requests will update the same resource.
3. HTTP POST
This is used to create new resources. It is not idempotent, making two identical POST will duplicate the resource creation.
4. HTTP DELETE
This is used to delete a resource. It is idempotent. Multiple identical requests will delete the same resource.
5. HTTP PATCH
The PATCH method applies partial modifications to a resource.
6. HTTP HEAD
The HEAD method asks for a response identical to a GET request but without the response body.
7. HTTP CONNECT
The CONNECT method establishes a tunnel to the server identified by the target resource.
8. HTTP OPTIONS
This describes the communication options for the target resource.
9. HTTP TRACE
This performs a message loop-back test along the path to the target resource.
This retrieves a resource from the server. It is idempotent. Multiple identical requests return the same result.
2. HTTP PUT
This updates or Creates a resource. It is idempotent. Multiple identical requests will update the same resource.
3. HTTP POST
This is used to create new resources. It is not idempotent, making two identical POST will duplicate the resource creation.
4. HTTP DELETE
This is used to delete a resource. It is idempotent. Multiple identical requests will delete the same resource.
5. HTTP PATCH
The PATCH method applies partial modifications to a resource.
6. HTTP HEAD
The HEAD method asks for a response identical to a GET request but without the response body.
7. HTTP CONNECT
The CONNECT method establishes a tunnel to the server identified by the target resource.
8. HTTP OPTIONS
This describes the communication options for the target resource.
9. HTTP TRACE
This performs a message loop-back test along the path to the target resource.
مخطط توضيح مكونات api متكاملة
رابط المقال الاصلي لاحد المطورين المحترفين
https://www.linkedin.com/posts/alexxubyte_systemdesign-coding-interviewtips-activity-7156688533682855936-oPCE?utm_source=share&utm_medium=member_desktop
رابط المقال الاصلي لاحد المطورين المحترفين
https://www.linkedin.com/posts/alexxubyte_systemdesign-coding-interviewtips-activity-7156688533682855936-oPCE?utm_source=share&utm_medium=member_desktop
🔥1