`
`
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
okay thank you
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
No description
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
for litteraly 3 days
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
ive been trying to make this work
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
tysm bro
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
actually
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
@Keswiik yo
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
okay thanks ill see
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
how do i use it?
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
wdym?
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
hm?
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
// using api.Data;
using Microsoft.EntityFrameworkCore;

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

builder.Services.AddDbContext<ApplicationDBContext>(options => {
options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection"));
});

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}

app.UseHttpsRedirection();

app.Run();
// using api.Data;
using Microsoft.EntityFrameworkCore;

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

builder.Services.AddDbContext<ApplicationDBContext>(options => {
options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection"));
});

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}

app.UseHttpsRedirection();

app.Run();
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
ik i was jsut watching a course and it did it in vscode so i didnt wanna do anything wrong
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
program?
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
No description
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
am i suppose to have a startup.cs file
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
@ded like this?
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
// using System.Net.Mime;
using System;
using System.Collections.Generic;
using System.Linq;
using System.ComponentModel.DataAnnotations.Schema;
using System.Threading.Tasks;


namespace api.Models
{
public class Stock
{
public int Id { get; set; }
public string Symbol { get; set; } = string.Empty;
public string CompanyName { get; set; } = string.Empty;
[Column(TypeName = "decimal(18,2)")]
public Decimal Purchase { get; set; }
[Column(TypeName = "decimal(18,2)")]
public Decimal LastDiv { get; set; }
public string Industry { get; set; } = string.Empty;
public long MarketCap { get; set; }
public List<Comment> Comment { get; set; } = new List<Comment>();
}
}
// using System.Net.Mime;
using System;
using System.Collections.Generic;
using System.Linq;
using System.ComponentModel.DataAnnotations.Schema;
using System.Threading.Tasks;


namespace api.Models
{
public class Stock
{
public int Id { get; set; }
public string Symbol { get; set; } = string.Empty;
public string CompanyName { get; set; } = string.Empty;
[Column(TypeName = "decimal(18,2)")]
public Decimal Purchase { get; set; }
[Column(TypeName = "decimal(18,2)")]
public Decimal LastDiv { get; set; }
public string Industry { get; set; } = string.Empty;
public long MarketCap { get; set; }
public List<Comment> Comment { get; set; } = new List<Comment>();
}
}
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
// namespace api.Models
{
public class Comment
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public DateTime CreatedOn { get; set; } = DateTime.Now;
public int? StockId { get; set; }
//navigation property
public Stock? Stock { get; set; }
}
}
// namespace api.Models
{
public class Comment
{
public int Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public DateTime CreatedOn { get; set; } = DateTime.Now;
public int? StockId { get; set; }
//navigation property
public Stock? Stock { get; set; }
}
}
40 replies
CC#
Created by ` on 3/25/2025 in #help
im watching a course about asp.net and creating some kind of web
// using api.Models;
using Microsoft.EntityFrameworkCore;

namespace api.Data
{
public class ApplicationDBContext : DbContext
{

public ApplicationDBContext(DbContextOptions<ApplicationDBContext> options) : base(options)
{
}


public DbSet<Stock> Stock { get; set; }
public DbSet<Comment> Comments { get; set; }
}
}
// using api.Models;
using Microsoft.EntityFrameworkCore;

namespace api.Data
{
public class ApplicationDBContext : DbContext
{

public ApplicationDBContext(DbContextOptions<ApplicationDBContext> options) : base(options)
{
}


public DbSet<Stock> Stock { get; set; }
public DbSet<Comment> Comments { get; set; }
}
}
40 replies