我在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
};
答案 0 :(得分:7)
您可以使用conditional operator。由于Text
属性永远不会返回null
,因此您可以安全地检查其长度是否为0(文本为空):
Users u = new Users()
{
FirstName = txtPName.Text.Length == 0 ? null : txtPName.Text,
LastName = txtPFamily.Text.Length == 0 ? null : txtPFamily.Text,
Username = txtPUsername.Text.Length == 0 ? null : txtPUsername.Text,
Password = txtPPassword.Text.Length == 0 ? null : txtPPassword.Text
};
如果您还想将空格视为“空”,请使用String.IsNullOrWhiteSpace
,例如:
FirstName = String.IsNullOrWhiteSpace(txtPName.Text) ? null : txtPName.Text
答案 1 :(得分:0)
您可以使用string.IsNullOrEmpty或string.IsNullOrWhiteSpace方法检查TextBox值。
//这会将Textbox的字符串设置为值(如果有的话)或null
string yourValueToPutIntoDatabase = (string.IsNullOrEmpty(yourTextBox.Text)) ? yourTextBox.Text : null;
如果您感觉更舒服,也可以在if语句中使用它:
string valueToPutInDatabase;
if(string.IsNullOrEmpty(yourTextBox.Text))
{
//Your textbox was empty
valueToPutInDatabase = null;
}
else
{
valueToPutInDatabase = yourTextBox.Text;
}
试试这个..
答案 2 :(得分:0)
试试这个
if(txtPName.Text==""){
u.FirstName =null;
}
if(txtPFamily.Text==""){
u.LastName =null;
}
if(txtPUsername.Text==""){
u.Username =null;
}
if(txtPPassword.Text==""){
u.Password =null;
}