SlideShare a Scribd company logo
Getting Started with .NET on
OpenSuse
(ASP.NET with C#)
Alin Nur Alifah / Alin
alinnural@gmail.com
Alin Nur Alifah
Alin
alinnural.com
@alinnural
GNU Linux Bogor Activist
WEB Developer @IPB
Ilkomerz @IPB
Thank you
Thank you
For join my class
Lets sharing...
.NET ???
.NET ???
.NET is a layer of software that makes it easier for you to write
programs
.NET Core
Vs
.NET Framework
.NET Core
Vs
.NET Framework
.NET Core is a general purpose, modular, cross-platform and open
source implementation of the .NET Platform.
.NET with C# Languange
C# Languange
The C# language is disarmingly simple, which makes it good for beginners, but
C# also includes all the support for the structured, component-based,
object-oriented programming that one expects of a modern language built on
the shoulders of C++ and Java.
Lets Code...
Install dotnet
# sudo zypper install libunwind libicu
# curl -sSL -o dotnet.tar.gz
https://go.microsoft.com/fwlink/?LinkID=827532
# sudo mkdir -p /opt/dotnet && sudo tar zxf
dotnet.tar.gz -C /opt/dotnet
# sudo ln -s /opt/dotnet/dotnet /usr/local/bin
Let's initialize a sample Hello World
application!
# mkdir hwapp
# cd hwapp
# dotnet new
# dotnet restore
# dotnet run
Let's initialize a sample Hello World
application!
Simple
ASP.NET Core
Application
Node.js and npm
is required !
Install node.js and npm
# wget -qO-
https://raw.githubusercontent.com/creation
ix/nvm/v0.31.7/install.sh | bash
# source ~/.bashrc
# nvm install v.x.xx.x
Scaffolding usings Yeoman
Install the necessary yeoman generators and bower using npm.
# npm install -g yo generator-aspnet bower
Run the ASP.NET Core generator
# yo aspnet
# dotnet restore
# dotnet run
Scaffolding usings Yeoman
Scaffolding usings Yeoman
Sub Generators
https://github.com/omnisharp/generator-as
pnet#sub-generators
eg : add a new class
# yo aspnet:mvccontroller BlogController
Connect Database
New SQLite Database
"dependencies": {
"Microsoft.EntityFrameworkCore.Sqlite": "1.0.0",
"Microsoft.EntityFrameworkCore.Design": {
"version": "1.0.0-preview2-final",
"type": "build"
}
"tools": {
"Microsoft.EntityFrameworkCore.Tools":
"1.0.0-preview2-final"
}
Connect Database
Verify that Entity Framework is installed by running
# dotnet ef - -help
Run dotnet restore again to install the new packages.
# dotnet restore
Create Model
Generate Database
This will find our context and models, and generate a migration
# dotnet ef migrations add MyFirstMigration
create the database file and creates the tables
# dotnet ef database update
Use Model on Controller
[HttpGet]
[AllowAnonymous]
public IActionResult Index(string nama = null)
{
var db = new BloggingContext();
db.Blogs.Add(new Blog { Url = nama });
db.SaveChanges();
ViewData["daftarBlog"] = db.Blogs;
return View();
}
Getting started with .net on openSUSE  (asp.net with c#)
Thank you
Referensi
https://docs.asp.net/en/latest/tutorials/your-first-mac-aspnet.html
https://docs.asp.net/en/latest/client-side/yeoman.html
https://github.com/omnisharp/generator-aspnet#sub-generators

More Related Content

What's hot (19)

PPTX
Pluralsight Webinar: Simplify Your Project Builds with Docker
Elton Stoneman
 
PPTX
“ASP.NET Core. Features and architecture”
HYS Enterprise
 
PDF
Webpack and angularjs
Nir Kaufman
 
PPT
Audioproject
buntfu
 
ODP
iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
ODP
iOS Developers Conference-iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
PDF
Sep Nasiri "Upwork PHP Architecture"
Fwdays
 
PDF
Modern Web Applications Utilizing HTML5 (Dev Con TLV 06-2013)
Ido Green
 
PPT
Dockerizing BDD : Ruby-Cucumber Example
Shashikant Jagtap
 
PDF
[English][Test Girls] Zero to Hero: Start Test automation with Cypress
Test Girls
 
PDF
Beginner's Guide to Angular 2.0
All Things Open
 
PPTX
Devops Boise - Israel Shirk - Pragmatic Migration to Infrastructure As Code
Israel Shirk
 
PPTX
Fullstack workshop
Assaf Gannon
 
PDF
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
Anthony Alvarez
 
PDF
Puppeteer - Headless Chrome Node API
Wilson Su
 
PDF
[Js hcm] Deploying node.js with Forever.js and nginx
Nicolas Embleton
 
PDF
Slim PHP when you don't need the kitchen sink
Joe Ferguson
 
PPTX
Deploy Node.js application in Heroku using Eclipse
Jitendra Zaa
 
PPT
Griffon: Swing just got fun again
James Williams
 
Pluralsight Webinar: Simplify Your Project Builds with Docker
Elton Stoneman
 
“ASP.NET Core. Features and architecture”
HYS Enterprise
 
Webpack and angularjs
Nir Kaufman
 
Audioproject
buntfu
 
iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
iOS Developers Conference-iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
Sep Nasiri "Upwork PHP Architecture"
Fwdays
 
Modern Web Applications Utilizing HTML5 (Dev Con TLV 06-2013)
Ido Green
 
Dockerizing BDD : Ruby-Cucumber Example
Shashikant Jagtap
 
[English][Test Girls] Zero to Hero: Start Test automation with Cypress
Test Girls
 
Beginner's Guide to Angular 2.0
All Things Open
 
Devops Boise - Israel Shirk - Pragmatic Migration to Infrastructure As Code
Israel Shirk
 
Fullstack workshop
Assaf Gannon
 
DevOps Camp 2017 NYC Local Development using Vagrant by Anthony Alvarez
Anthony Alvarez
 
Puppeteer - Headless Chrome Node API
Wilson Su
 
[Js hcm] Deploying node.js with Forever.js and nginx
Nicolas Embleton
 
Slim PHP when you don't need the kitchen sink
Joe Ferguson
 
Deploy Node.js application in Heroku using Eclipse
Jitendra Zaa
 
Griffon: Swing just got fun again
James Williams
 

Viewers also liked (20)

ODP
Women Contribution Today's in Technology Era
Umul Sidikoh
 
PPT
1.3 creating links
Bulldogs83
 
PPTX
Recycling
Eva Vovka
 
PDF
Questionnaire results students-teachers-zr
Mihajlo Gajic
 
PPT
Idiom 1
daunchface25
 
PPTX
Global warming
Eva Vovka
 
PPTX
Global dimension in social sciences subjects in formal
Eva Vovka
 
PPT
7.1 xhtml validation
Bulldogs83
 
PPTX
Global warming, presentatation made by Lāsma Akote
Eva Vovka
 
PPT
Questionaire pancevo-teachers-2011
Mihajlo Gajic
 
PPTX
Football
Eva Vovka
 
PPTX
Another world (2)- Aļona
Eva Vovka
 
PPTX
Java da kod yazmağa başlamaq(if else)
Murad İmanbayli
 
PPTX
Solar energy
Eva Vovka
 
PPTX
Ecologic footprint
Eva Vovka
 
PPT
4.2 css classes
Bulldogs83
 
PPS
LETRA A
galasol999
 
PPTX
Dress from newspapers_-_copy (1)
Eva Vovka
 
PPTX
Como sair das dividas de uma vez por todas
RafaelPSilva
 
Women Contribution Today's in Technology Era
Umul Sidikoh
 
1.3 creating links
Bulldogs83
 
Recycling
Eva Vovka
 
Questionnaire results students-teachers-zr
Mihajlo Gajic
 
Idiom 1
daunchface25
 
Global warming
Eva Vovka
 
Global dimension in social sciences subjects in formal
Eva Vovka
 
7.1 xhtml validation
Bulldogs83
 
Global warming, presentatation made by Lāsma Akote
Eva Vovka
 
Questionaire pancevo-teachers-2011
Mihajlo Gajic
 
Football
Eva Vovka
 
Another world (2)- Aļona
Eva Vovka
 
Java da kod yazmağa başlamaq(if else)
Murad İmanbayli
 
Solar energy
Eva Vovka
 
Ecologic footprint
Eva Vovka
 
4.2 css classes
Bulldogs83
 
LETRA A
galasol999
 
Dress from newspapers_-_copy (1)
Eva Vovka
 
Como sair das dividas de uma vez por todas
RafaelPSilva
 
Ad

Similar to Getting started with .net on openSUSE (asp.net with c#) (20)

PDF
.NET Core on Mac
Melania Andrisan (Danciu)
 
PDF
.NET Study Group - ASP.NET Core with GCP
Chen-Tien Tsai
 
PPTX
Quick Interview Preparation Dot Net Core
Karmanjay Verma
 
PDF
GCPUG.TW Meetup #25 - ASP.NET Core with GCP
Chen-Tien Tsai
 
PDF
introduction to asp.net core lebanese university.pptx
husseinhazimeh20
 
PDF
Asp.net core tutorial
HarikaReddy115
 
PDF
.NET Core, ASP.NET Core Course, Session 6
Amin Mesbahi
 
PDF
Asp.Net Core MVC , Razor page , Entity Framework Core
mohamed elshafey
 
PPTX
Developing Cross-Platform Web Apps with ASP.NET Core1.0
EastBanc Tachnologies
 
PDF
.Net framework vs .net core a complete comparison
Katy Slemon
 
PPTX
Academy PRO: .NET Core intro
Binary Studio
 
PDF
ASP.NET vs ASP.NET Core
Öğr. Gör. Erkan HÜRNALI
 
PPTX
Advantage of .Net Appplication - You can write app
goindsaranjimaharaj
 
PDF
Pottnet Meetup Essen - ASP.Net Core
Malte Lantin
 
PDF
Pottnet MeetUp Essen - ASP.Net Core
Malte Lantin
 
PPTX
Cross platform dotnet development using dotnet core
Swaminathan Vetri
 
PPTX
.NET Conf 2019 高雄場 - .NET Core 3.0
Jeff Chu
 
PDF
Introduction to ASP.NET Core
Avanade Nederland
 
PPTX
Docker With Asp.net Core
Fatih Şimşek
 
PDF
White Paper : ASP.NET Core AngularJs 2 and Prime
Hamida Rebai Trabelsi
 
.NET Core on Mac
Melania Andrisan (Danciu)
 
.NET Study Group - ASP.NET Core with GCP
Chen-Tien Tsai
 
Quick Interview Preparation Dot Net Core
Karmanjay Verma
 
GCPUG.TW Meetup #25 - ASP.NET Core with GCP
Chen-Tien Tsai
 
introduction to asp.net core lebanese university.pptx
husseinhazimeh20
 
Asp.net core tutorial
HarikaReddy115
 
.NET Core, ASP.NET Core Course, Session 6
Amin Mesbahi
 
Asp.Net Core MVC , Razor page , Entity Framework Core
mohamed elshafey
 
Developing Cross-Platform Web Apps with ASP.NET Core1.0
EastBanc Tachnologies
 
.Net framework vs .net core a complete comparison
Katy Slemon
 
Academy PRO: .NET Core intro
Binary Studio
 
ASP.NET vs ASP.NET Core
Öğr. Gör. Erkan HÜRNALI
 
Advantage of .Net Appplication - You can write app
goindsaranjimaharaj
 
Pottnet Meetup Essen - ASP.Net Core
Malte Lantin
 
Pottnet MeetUp Essen - ASP.Net Core
Malte Lantin
 
Cross platform dotnet development using dotnet core
Swaminathan Vetri
 
.NET Conf 2019 高雄場 - .NET Core 3.0
Jeff Chu
 
Introduction to ASP.NET Core
Avanade Nederland
 
Docker With Asp.net Core
Fatih Şimşek
 
White Paper : ASP.NET Core AngularJs 2 and Prime
Hamida Rebai Trabelsi
 
Ad

Recently uploaded (20)

PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 

Getting started with .net on openSUSE (asp.net with c#)