可能重复:
c# why cant a nullable int be assigned null as a value
我试图将我的阅读器[3]对象的日期时间转换为null,如果论坛没有lastPostDate,但它说我错过了转换。 错误:
无法确定条件表达式的类型,因为
<null>
和'System.DateTime'之间没有隐式转换
public class Forums
{
public List<Forum> GetForums()
{
using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["CMS"].ConnectionString))
{
conn.Open();
SqlCommand cmd = new SqlCommand("sproc_Forums_GetForums", conn);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.Default);
List<Forum> forums = new List<Forum>();
while (reader.Read())
{
var title = reader[6].ToString();
var threadCount = (int)reader[5];
var lastPostTitle = reader[4].ToString();
// below is where im having a problem
Nullable<DateTime> lastPostDate = (reader[3] == DBNull.Value ? null : Convert.ToDateTime(reader[3]));
var lastPostBy = reader[2].ToString();
var forumGroup = reader[1].ToString();
var description = reader[0].ToString();
Forum forum = new Forum(0, "",DateTime.Now,
reader["Title"].ToString(),description,
0,false,"","",DateTime.Now,true,
forumGroup, (int)threadCount, lastPostBy,
lastPostDate, lastPostTitle);
forums.Add(forum);/**/
}
return forums;
}
}
}
以下是具有Nullable lastPostDate的论坛的类对象
public class Forum
{
public Forum(int forumID, string addedBy, DateTime addedDate, string title, string description, int parentID, bool moderated,
string imageUrl, string updatedBy, DateTime? updatedDate, bool active, string forumGroup, int threadCount, string lastPostBy,
Nullable<DateTime> lastPostDate, string lastPostTitle)
{
this.ForumID = forumID;
this.AddedBy = addedBy;
this.AddedDate = addedDate;
this.Title = title;
this.Description = description;
this.ParentID = parentID;
this.Moderated = moderated;
this.ImageUrl = imageUrl;
this.UpdatedBy = updatedBy;
this.UpdatedDate = updatedDate;
this.Active = active;
this.ForumGroup = forumGroup;
this.ThreadCount = threadCount;
this.LastPostBy = lastPostBy;
this.LastPostDate = lastPostDate;
this.LastPostTitle = lastPostTitle;
}
private int _forumID;
public int ForumID
{
get { return _forumID; }
set { _forumID = value; }
}
private string _addedBy;
public string AddedBy
{
get { return _addedBy; }
set { _addedBy = value; }
}
private DateTime _addedDate = DateTime.Now;
public DateTime AddedDate
{
get { return _addedDate; }
set { _addedDate = value; }
}
private string _title = "";
public string Title
{
get { return _title; }
set { _title = value; }
}
private string _description = "";
public string Description
{
get { return _description; }
set { _description = value; }
}
private int _parentID = 0;
public int ParentID
{
get { return _parentID; }
set { _parentID = value; }
}
private bool _moderated = false;
public bool Moderated
{
get { return _moderated; }
set { _moderated = value; }
}
private string _imageUrl = "";
public string ImageUrl
{
get { return _imageUrl; }
set { _imageUrl = value; }
}
private string _updatedBy = "";
public string UpdatedBy
{
get { return _updatedBy; }
set { _updatedBy = value; }
}
private DateTime? _updatedDate = null;
public DateTime? UpdatedDate
{
get { return _updatedDate; }
set { _updatedDate = value; }
}
private bool _active = false;
public bool Active
{
get { return _active; }
set { _active = value; }
}
private string _forumGroup = "";
public string ForumGroup
{
get { return _forumGroup; }
set { _forumGroup = value; }
}
private int _threadCount = 0;
public int ThreadCount
{
get { return _threadCount; }
set { _threadCount = value; }
}
private string _lastPostBy = "";
public string LastPostBy
{
get { return _lastPostBy; }
set { _lastPostBy = value; }
}
private Nullable<DateTime> _lastPosteDate = null;
public Nullable<DateTime> LastPostDate
{
get { return _lastPosteDate; }
set { _lastPosteDate = value; }
}
private string _lastPostTitle = "";
public string LastPostTitle
{
get { return _lastPostTitle; }
set { _lastPostTitle = value; }
}
}
答案 0 :(得分:27)
你可能想这样做:
DateTime? lastPostDate = (DateTime?)(reader.IsDbNull(3) ? null : reader[3]);
您遇到的问题是三元运营商希望在左侧和右侧之间进行可行的演员表演。并且null不能转换为DateTime。
请注意上述情况,因为三元的两边都是对象。该对象显式转换为DateTime?哪个有效:只要读者[3]实际上是约会。
答案 1 :(得分:26)
确保这两种类型为nullable DateTime
var lastPostDate = reader[3] == DBNull.Value ?
null :
(DateTime?) Convert.ToDateTime(reader[3]);
DateTime?
代替Nullable<DateTime>
可以节省时间...... 我在Eric Lippert blog中找到了这个出色的解释:
?:
运算符的规范说明如下:
?:运算符的第二个和第三个操作数控制的类型 条件表达式。设X和Y为第二个和第二个的类型 第三个操作数。然后,
如果X和Y是相同的类型,那么这是条件的类型 表达。
否则,如果从X到Y存在隐式转换, 但不是从Y到X,那么Y是条件表达式的类型。
否则,如果存在从Y到X的隐式转换,而不是来自 X到Y,则X是条件表达式的类型。
否则, 没有表达式类型可以确定,并且发生编译时错误。
编译器不会检查可以“保留”这两种类型的类型。
在这种情况下:
null
和DateTime
的类型不同。null
没有隐式转换为DateTime
DateTime
没有隐式转换为null
所以我们最终会遇到编译错误。
答案 2 :(得分:8)
投射空文字:(DateTime?)null
或(Nullable<DateTime>)null
。
您还可以使用default(DateTime?)
或default(Nullable<DateTime>)
并且,正如其他答案所指出的那样,您也可以将强制转换应用于DateTime值而不是null文字。
编辑(改编自我对Prutswonder的回答):关键是条件运算符不考虑其赋值目标的类型,因此只有在从第二个操作数的类型到第三个操作数的类型或类型的隐式转换时才会编译第三个操作数的第二个操作数的类型。
例如,这不会编译:
bool b = GetSomeBooleanValue();
object o = b ? "Forty-two" : 42;
然而,将第二个或第三个操作数转换为object
可以解决问题,因为存在从int到对象以及从字符串到对象的隐式转换:
object o = b ? "Forty-two" : (object)42;
或
object o = b ? (object)"Forty-two" : 42;
答案 3 :(得分:5)
你可以试试这个
var lastPostDate = reader[3] == DBNull.Value ?
default(DateTime?):
Convert.ToDateTime(reader[3]);