Relative Content

Tag Archive for .net-4.7.2

error CS1061 ‘object’ does not contain a definition for ‘ToList’ and no accessible extension method

using System; using System.Linq; using Dblayer; using System.Collections.Generic; using PizzaResturantDrink.Models; namespace PizzaRestaurantDrink.Models { public class CRU_UserTypeMV { public CRU_UserTypeMV() { List_UserTypes = new List<UserTypeMV>(); foreach (var usertype in new PizzResturentAndDrinkDbEntities().UserTypeTBL.ToList()) { List_UserTypes.Add(new UserTypeMV() { UserTypeID = usertype.UserTypeID, UserType = usertype.UserType }); } } I’m using Visual Studio 2019 .Net Framework 4.7.2 I’m newbe on this […]