Posted on: 2/18/2015 12:56:13 AM | Views : 600

Could someone explain this error to me, this is an MVC project?
namespace BicycleShop.Models { public partial class Brand { public string Name { get; set; } public int BrandId { get; set; } public string Description { get; set; }  public List<Product> Products { get; set; } public int ICollection <Product> { get; set; }   Error here!
} }
Error 2 Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement C:\Users\Andrew\Documents\Visual Studio 2012\Projects\BicycleShop\BicycleShop\Models\Brand.cs 15 44 BicycleShop Error 4 Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement C:\Users\Andrew\Documents\Visual Studio 2012\Projects\BicycleShop\BicycleShop\Models\Brand.cs 15 49 BicycleShop Error 1 Syntax error, '(' expected C:\Users\Andrew\Documents\Visual Studio 2012\ ...

Go to the complete details ...