Когда я добавляю что-то в DbSet, я получаю описанную ошибку, я импортирую все, что мне нужно, плюс некоторые вещи, которые я читаю в stackoverflow, когда я создаю консольное приложение, я подключаю его без проблем, но по какой-то причине это неt работать с веб-проектом.
Это часть моего файла Web.config, который я предоставил остальным классам ниже
<add name="MyDBContext" providerName="System.Data.SqlClient" connectionString="Server=Batonja-PC; Database=ProjekatBaza; user=sa;password=stoka123"/>
открытый класс Korisnik {
public Korisnik(){
}
public override bool Equals(object obj)
{
Korisnik gost = (Korisnik)obj;
if(Username == gost.Username)
{
return true;
}
return false;
}
public override int GetHashCode()
{
return Username.GetHashCode();
}
public override string ToString()
{
return Ime + " " + Prezime + " " + Pol.ToString() + " " + Username + " " + Password;
}
public Korisnik(string ime, string password, Pol? pol, string prezime, string username)
{
Ime = ime;
Password = password;
Pol = pol;
Prezime = prezime;
Username = username;
Uloga = Roles.Domacin;
}
public string Ime { get; set; }
public string Password { get; set; }
public Pol? Pol { get; set; }
public string Prezime { get; set; }
public Roles? Uloga { get; set; }
[Key]
public string Username { get; set; }
}
public class MyDBContext : DbContext
{
public DbSet<Domacin> Domacini { get; set; }
public DbSet<Gost> Gosti { get; set; }
public DbSet<Administrator> Administratori { get; set; }
public DbSet<Rezervacija> Rezervacije { get; set; }
public DbSet<Komentar> Komentari { get; set; }
public DbSet<Apartman> Apartmani { get; set; }
public DbSet<Korisnik> Korisnici { get; set; }
public MyDBContext(): base("MyDBContext")
{
}
}
открытый индекс ActionResult () {
UcitajAdmine(@"D:\FAKS\WEB\Projekat\Projekat\Projekat\Administratori.txt");
using (var context = new MyDBContext())
{
Korisnik korisnik = new Korisnik("Mile","stokan",Pol.Muski,"MIlic","Milo");
try
{
context.Korisnici.Add(korisnik);
}catch(SqlException ex)
{
Console.WriteLine(ex.StackTrace);
}
context.SaveChanges();
}
return View();
}