I have Konu and Etiketler tables in database.
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
SonerSevincComEntities context = new SonerSevincComEntities();
var Konular = context.Konu.ToList();
return View(Konular);
}
}
In Konu Controller's View ,
I want to call Etiketler table and its Id.
I already use Konu Model But i want to use Etiketler Model in 1 View.
How can i call 2 tables(models)in 1 view page ?