Facing Null Value Data using View Model in .Net MVC 5Compile Views in ASP.NET MVCHow to render an ASP.NET MVC view as a string?How to pass model data across views in MVC?HtmlEncode on Post for ASP.Net MVC 3 Html.TextAreaForMVC - Model - View and Controller 's roleMVC 4 @Html.DropDownListFor() not passing model values to dropdownPassing multiple models into view MVCHow to send dropdown value from view to controllerIs using a view model mandatory in MVCASP.Net MVC : Binding Dropdownlist to a List on the Model

Publishing papers seem natural to many, while I find it really hard to think novel stuff to pursue till publication. How to cope up with this?

Distance between horizontal tree levels

How many tone holes are there actually in different orchestral woodwind instruments?

US citizen traveling with Peruvian passport

Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?

What does Middle English "bihiȝten" mean?

Run Bash scripts in folder all at the same time

Why was such an unrevealing title originally chosen and then changed for some International markets?

My previous employer committed a severe violation of the law and is also being sued by me. How do I explain the situation to future employers?

What factors could lead to bishops establishing monastic armies?

This LM317 diagram doesn't make any sense to me

User Vs. Connected App

QR codes, do people use them?

Would a carnivorous diet be able to support a giant worm?

Why is the Cauchy Distribution is so useful?

Why is a mixture of two normally distributed variables only bimodal if their means differ by at least two times the common standard deviation?

Party going through airport security at separate times?

Are there red cards that offer protection against mass token destruction?

Adjust the Table

Why does Trump want a citizenship question on the census?

How to evaluate the performance of open source solver?

Performance issue in code for reading line and testing for palindrome

How do you move up one folder in Finder?

Are all diatonic chords in the diminished scale diminished?



Facing Null Value Data using View Model in .Net MVC 5


Compile Views in ASP.NET MVCHow to render an ASP.NET MVC view as a string?How to pass model data across views in MVC?HtmlEncode on Post for ASP.Net MVC 3 Html.TextAreaForMVC - Model - View and Controller 's roleMVC 4 @Html.DropDownListFor() not passing model values to dropdownPassing multiple models into view MVCHow to send dropdown value from view to controllerIs using a view model mandatory in MVCASP.Net MVC : Binding Dropdownlist to a List on the Model






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am student developper in Asp.Net MVC 5. And I am facing a null value problem. When I try to insert my form data for my SQL database , ı see Null value to all column in my database area. I did not find a solution about it. What kind of error i am doing on my code? It should be easy error. But i did not find from any source. Could you help me at this issue?



Models:



 public partial class Personel

public int pid get; set;
public string pAd get; set;
public string pSoyad get; set;
public string pTelNo get; set;
public string yonetici get; set;
public Nullable<int> dprFk get; set;

public virtual Departman Departman get; set;



Class for View :



 public class viewModel

public IEnumerable<Departman>DepartmanInfo get; set;
public IEnumerable<Personel> PersonelInfo get; set;

public Personel Personel get; set;



My controller and Create method:



public ActionResult Create()

var model = new viewModel()

DepartmanInfo = db.Departman.ToList(),
PersonelInfo = db.Personel.ToList()
;
return View("Create", model);

[HttpPost]
public ActionResult Create([Bind(Include="pid,pAd,pSoyad,pTelNo,yonetici,dprFk")]Personel pModel)

var personel = new Personel();

personel.pAd = pModel.pAd;
personel.pSoyad = pModel.pSoyad;
personel.pTelNo = pModel.pTelNo;
personel.yonetici = pModel.yonetici;
personel.dprFk = pModel.dprFk;
db.Personel.Add(personel);
db.SaveChanges();
return RedirectToAction("Index", "AdminUI");




My Form html page :



@model TelefonRehberi.Models.Class.viewModel

@using (Html.BeginForm("Create","Personel",FormMethod.Post))


<div class="form-group">
@Html.LabelFor(m=>m.Personel.pAd)
@Html.TextAreaFor(m => m.Personel.pAd, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pSoyad)
@Html.TextAreaFor(m => m.Personel.pSoyad, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pTelNo)
@Html.TextAreaFor(m => m.Personel.pTelNo, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.dprFk)
@Html.DropDownListFor(m => m.Personel.dprFk, new SelectList(Model.DepartmanInfo, "dprid", "dprAd"), "Departman Seçiniz", new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.yonetici)
@Html.DropDownListFor(m => m.Personel.yonetici, new SelectList(Model.PersonelInfo, "pid", "pAd"), "Yönetici Seçiniz ", new @class = "form-control" )
</div>

<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>











share|improve this question
























  • At first glance, I see that your view uses viewModel, but your POST action method uses Personel. Try stripping out BindAttribute and use viewModel as POST action parameter, then check if Personel properties contains values.

    – Tetsuya Yamamoto
    Mar 26 at 1:25











  • Also, your ViewModel shouldn't contain database models - it should only contain simple types (int, string, etc.) and other view models

    – kilkfoe
    Mar 26 at 4:28











  • I found my mistake thanks your advice.

    – Emre Sert
    Mar 26 at 11:09

















0















I am student developper in Asp.Net MVC 5. And I am facing a null value problem. When I try to insert my form data for my SQL database , ı see Null value to all column in my database area. I did not find a solution about it. What kind of error i am doing on my code? It should be easy error. But i did not find from any source. Could you help me at this issue?



Models:



 public partial class Personel

public int pid get; set;
public string pAd get; set;
public string pSoyad get; set;
public string pTelNo get; set;
public string yonetici get; set;
public Nullable<int> dprFk get; set;

public virtual Departman Departman get; set;



Class for View :



 public class viewModel

public IEnumerable<Departman>DepartmanInfo get; set;
public IEnumerable<Personel> PersonelInfo get; set;

public Personel Personel get; set;



My controller and Create method:



public ActionResult Create()

var model = new viewModel()

DepartmanInfo = db.Departman.ToList(),
PersonelInfo = db.Personel.ToList()
;
return View("Create", model);

[HttpPost]
public ActionResult Create([Bind(Include="pid,pAd,pSoyad,pTelNo,yonetici,dprFk")]Personel pModel)

var personel = new Personel();

personel.pAd = pModel.pAd;
personel.pSoyad = pModel.pSoyad;
personel.pTelNo = pModel.pTelNo;
personel.yonetici = pModel.yonetici;
personel.dprFk = pModel.dprFk;
db.Personel.Add(personel);
db.SaveChanges();
return RedirectToAction("Index", "AdminUI");




My Form html page :



@model TelefonRehberi.Models.Class.viewModel

@using (Html.BeginForm("Create","Personel",FormMethod.Post))


<div class="form-group">
@Html.LabelFor(m=>m.Personel.pAd)
@Html.TextAreaFor(m => m.Personel.pAd, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pSoyad)
@Html.TextAreaFor(m => m.Personel.pSoyad, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pTelNo)
@Html.TextAreaFor(m => m.Personel.pTelNo, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.dprFk)
@Html.DropDownListFor(m => m.Personel.dprFk, new SelectList(Model.DepartmanInfo, "dprid", "dprAd"), "Departman Seçiniz", new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.yonetici)
@Html.DropDownListFor(m => m.Personel.yonetici, new SelectList(Model.PersonelInfo, "pid", "pAd"), "Yönetici Seçiniz ", new @class = "form-control" )
</div>

<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>











share|improve this question
























  • At first glance, I see that your view uses viewModel, but your POST action method uses Personel. Try stripping out BindAttribute and use viewModel as POST action parameter, then check if Personel properties contains values.

    – Tetsuya Yamamoto
    Mar 26 at 1:25











  • Also, your ViewModel shouldn't contain database models - it should only contain simple types (int, string, etc.) and other view models

    – kilkfoe
    Mar 26 at 4:28











  • I found my mistake thanks your advice.

    – Emre Sert
    Mar 26 at 11:09













0












0








0








I am student developper in Asp.Net MVC 5. And I am facing a null value problem. When I try to insert my form data for my SQL database , ı see Null value to all column in my database area. I did not find a solution about it. What kind of error i am doing on my code? It should be easy error. But i did not find from any source. Could you help me at this issue?



Models:



 public partial class Personel

public int pid get; set;
public string pAd get; set;
public string pSoyad get; set;
public string pTelNo get; set;
public string yonetici get; set;
public Nullable<int> dprFk get; set;

public virtual Departman Departman get; set;



Class for View :



 public class viewModel

public IEnumerable<Departman>DepartmanInfo get; set;
public IEnumerable<Personel> PersonelInfo get; set;

public Personel Personel get; set;



My controller and Create method:



public ActionResult Create()

var model = new viewModel()

DepartmanInfo = db.Departman.ToList(),
PersonelInfo = db.Personel.ToList()
;
return View("Create", model);

[HttpPost]
public ActionResult Create([Bind(Include="pid,pAd,pSoyad,pTelNo,yonetici,dprFk")]Personel pModel)

var personel = new Personel();

personel.pAd = pModel.pAd;
personel.pSoyad = pModel.pSoyad;
personel.pTelNo = pModel.pTelNo;
personel.yonetici = pModel.yonetici;
personel.dprFk = pModel.dprFk;
db.Personel.Add(personel);
db.SaveChanges();
return RedirectToAction("Index", "AdminUI");




My Form html page :



@model TelefonRehberi.Models.Class.viewModel

@using (Html.BeginForm("Create","Personel",FormMethod.Post))


<div class="form-group">
@Html.LabelFor(m=>m.Personel.pAd)
@Html.TextAreaFor(m => m.Personel.pAd, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pSoyad)
@Html.TextAreaFor(m => m.Personel.pSoyad, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pTelNo)
@Html.TextAreaFor(m => m.Personel.pTelNo, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.dprFk)
@Html.DropDownListFor(m => m.Personel.dprFk, new SelectList(Model.DepartmanInfo, "dprid", "dprAd"), "Departman Seçiniz", new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.yonetici)
@Html.DropDownListFor(m => m.Personel.yonetici, new SelectList(Model.PersonelInfo, "pid", "pAd"), "Yönetici Seçiniz ", new @class = "form-control" )
</div>

<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>











share|improve this question
















I am student developper in Asp.Net MVC 5. And I am facing a null value problem. When I try to insert my form data for my SQL database , ı see Null value to all column in my database area. I did not find a solution about it. What kind of error i am doing on my code? It should be easy error. But i did not find from any source. Could you help me at this issue?



Models:



 public partial class Personel

public int pid get; set;
public string pAd get; set;
public string pSoyad get; set;
public string pTelNo get; set;
public string yonetici get; set;
public Nullable<int> dprFk get; set;

public virtual Departman Departman get; set;



Class for View :



 public class viewModel

public IEnumerable<Departman>DepartmanInfo get; set;
public IEnumerable<Personel> PersonelInfo get; set;

public Personel Personel get; set;



My controller and Create method:



public ActionResult Create()

var model = new viewModel()

DepartmanInfo = db.Departman.ToList(),
PersonelInfo = db.Personel.ToList()
;
return View("Create", model);

[HttpPost]
public ActionResult Create([Bind(Include="pid,pAd,pSoyad,pTelNo,yonetici,dprFk")]Personel pModel)

var personel = new Personel();

personel.pAd = pModel.pAd;
personel.pSoyad = pModel.pSoyad;
personel.pTelNo = pModel.pTelNo;
personel.yonetici = pModel.yonetici;
personel.dprFk = pModel.dprFk;
db.Personel.Add(personel);
db.SaveChanges();
return RedirectToAction("Index", "AdminUI");




My Form html page :



@model TelefonRehberi.Models.Class.viewModel

@using (Html.BeginForm("Create","Personel",FormMethod.Post))


<div class="form-group">
@Html.LabelFor(m=>m.Personel.pAd)
@Html.TextAreaFor(m => m.Personel.pAd, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pSoyad)
@Html.TextAreaFor(m => m.Personel.pSoyad, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.pTelNo)
@Html.TextAreaFor(m => m.Personel.pTelNo, new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.dprFk)
@Html.DropDownListFor(m => m.Personel.dprFk, new SelectList(Model.DepartmanInfo, "dprid", "dprAd"), "Departman Seçiniz", new @class = "form-control" )
</div>
<div class="form-group">
@Html.LabelFor(m => m.Personel.yonetici)
@Html.DropDownListFor(m => m.Personel.yonetici, new SelectList(Model.PersonelInfo, "pid", "pAd"), "Yönetici Seçiniz ", new @class = "form-control" )
</div>

<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>








.net asp.net-mvc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 23:14







Emre Sert

















asked Mar 25 at 22:57









Emre SertEmre Sert

461 silver badge8 bronze badges




461 silver badge8 bronze badges












  • At first glance, I see that your view uses viewModel, but your POST action method uses Personel. Try stripping out BindAttribute and use viewModel as POST action parameter, then check if Personel properties contains values.

    – Tetsuya Yamamoto
    Mar 26 at 1:25











  • Also, your ViewModel shouldn't contain database models - it should only contain simple types (int, string, etc.) and other view models

    – kilkfoe
    Mar 26 at 4:28











  • I found my mistake thanks your advice.

    – Emre Sert
    Mar 26 at 11:09

















  • At first glance, I see that your view uses viewModel, but your POST action method uses Personel. Try stripping out BindAttribute and use viewModel as POST action parameter, then check if Personel properties contains values.

    – Tetsuya Yamamoto
    Mar 26 at 1:25











  • Also, your ViewModel shouldn't contain database models - it should only contain simple types (int, string, etc.) and other view models

    – kilkfoe
    Mar 26 at 4:28











  • I found my mistake thanks your advice.

    – Emre Sert
    Mar 26 at 11:09
















At first glance, I see that your view uses viewModel, but your POST action method uses Personel. Try stripping out BindAttribute and use viewModel as POST action parameter, then check if Personel properties contains values.

– Tetsuya Yamamoto
Mar 26 at 1:25





At first glance, I see that your view uses viewModel, but your POST action method uses Personel. Try stripping out BindAttribute and use viewModel as POST action parameter, then check if Personel properties contains values.

– Tetsuya Yamamoto
Mar 26 at 1:25













Also, your ViewModel shouldn't contain database models - it should only contain simple types (int, string, etc.) and other view models

– kilkfoe
Mar 26 at 4:28





Also, your ViewModel shouldn't contain database models - it should only contain simple types (int, string, etc.) and other view models

– kilkfoe
Mar 26 at 4:28













I found my mistake thanks your advice.

– Emre Sert
Mar 26 at 11:09





I found my mistake thanks your advice.

– Emre Sert
Mar 26 at 11:09












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347557%2ffacing-null-value-data-using-view-model-in-net-mvc-5%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347557%2ffacing-null-value-data-using-view-model-in-net-mvc-5%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript