Sunday, March 6, 2022

Dot nets commands for VS Code

 dotnet version 

dotnet --info  

dotnet -h         

dotnet new  

mkdir Reactivities

dotnet new sln   

dotnet new webapi -n API

dotnet new classlib -n Application

dotnet new classlib -n Domain

dotnet new classlib -n Persistence

dotnet sln

dotnet sln add API/API.csproj

dotnet sln add Application

dotnet sln add Persistence

dotnet sln add Domain

dotnet sln list

dotnet add reference ../Application

cd Application

dotnet add reference ../Persistence

cd Persistence

dotnet add reference ../Domain

dotnet run

dotnet tool install --global dotnet-ef --version 6.0.1

dotnet tool list --global

dotnet ef -h

dotnet ef migrations add InitialCreate -p Persistence -s API/

dotnet ef migrations add InitialCreate -p Persistence -s API

dotnet ef database -h

dotnet new gitignore

dotnet build

dotnet run watch

dotnet ef migrations add IdentityAdded -p Persistence -s API

dotnet ef migrations add ActivityAttendee -p Persistence -s API

dotnet ef migrations remove -p Persistence -s API

dotnet new classlib -n Infrastructure

dotnet sln add Infrastructure

cd Infrastructure

dotnet add reference ../Application

cd..

cd API

dotnet add reference ../Infrastructure

cd..

dotnet restore


Friday, October 16, 2020

Convert Json to SQL

 I needed to convert some json data into sql in a short cut and found these following resources:


https://jsonutils.com/

https://dbdiagram.io/

Wednesday, October 7, 2020

Learning Path for PowerApps Portal

 Liquid Objects:

https://docs.microsoft.com/en-us/powerapps/maker/portals/liquid/liquid-objects


Portal's Pros and Cons:

http://shaikhd365.blogspot.com/2018/08/what-is-dynamic-crm-web-portal.html


Web API in Power Apps Portals:

https://www.ariclevin.com/Home/Post/web-api-powerapps-portals

https://docs.microsoft.com/en-us/powerapps/maker/portals/web-api-perform-operations

Saturday, September 26, 2020

Java Environment Setup

 Java's environment setup:


1. Install Amazon Corretto

https://aws.amazon.com/corretto/


2. Install IntelliJ IDEA

https://www.jetbrains.com/idea/

Wednesday, May 27, 2020

Some Useful Resources to Create an Angular or Angular 9 Project

https://codecraft.tv/courses/angular/http/http-with-observables/

https://www.techiediaries.com/angular/angular-9-8-tutorial-by-example-rest-crud-apis-http-get-requests-with-httpclient/

https://itnext.io/choosing-the-right-file-structure-for-angular-in-2020-and-beyond-a53a71f7eb05

https://www.techiediaries.com/angular-mock-backend/

https://www.npmjs.com/package/ol

https://stackblitz.com/edit/angular-bing-maps?file=src%2Fapp%2Fapp.component.ts

https://www.tektutorialshub.com/angular/angular-routing-between-modules/

https://angular.io/guide/feature-modules

https://www.techiediaries.com/angular/angular-9-elements-web-components/

https://www.techiediaries.com/angular/styling-angular-9-8-7-example-with-bootstrap-4-navbar-tables-forms-and-cards/

https://www.djamware.com/post/5e435e84a8d0ef4300ffc5f6/angular-9-tutorial-learn-to-build-a-crud-angular-app-quickly

https://www.djamware.com/post/5e435e84a8d0ef4300ffc5f6/angular-9-tutorial-learn-to-build-a-crud-angular-app-quickly

Some Resources to Create PowerApps Custom Component

Install PowerApps Cli

https://docs.microsoft.com/en-us/powerapps/developer/data-platform/powerapps-cli

Create and build a code component:

https://carldesouza.com/creating-a-custom-component-using-the-powerapps-component-framework/

Package a code component:

https://docs.microsoft.com/en-us/powerapps/developer/component-framework/import-custom-controls

Publish to production:

https://docs.microsoft.com/en-us/powerapps/developer/component-framework/issues-and-workarounds

Add code component into portal app:

https://www.inogic.com/blog/2021/09/use-of-code-components-in-power-apps-portal/

Extra:
PCF ReactJs Implementation Samples: