我在我的 Asp.net 页面中使用 LINQ 来访问数据库。
在用户看到所有文本框都为空的表单之前,我有一个带有一些文本框和一个提交按钮的表单:
txtPName.Text =null;
txtPFamily.Text = null;
txtPUsername.Text = null;
txtPPassword.Text = null;
并在单击按钮后将值插入Databse,但如果文本框为空,我希望null
在数据库中插入值但在数据库中插入空:
Users u = new Users()
{
FirstName = txtPName.Text,
LastName = txtPFamily.Text,
Username = txtPUsername.Text,
Password = txtPPassword.Text
};