为什么它不编译?以下代码有什么问题?
(_DbContext == null) ? return _DbContext = new ProductAndCategoryEntities() : return _DbContext;
如果我根据它是否编译来重申它:
if (_DbContext == null)
return _DbContext = new ProductAndCategoryEntities();
else return _DbContext;