Источник:
Строка 51: get
Строка 52: {
Строка 53: return (int)Math.Ceiling((decimal)repository.namebook.Count() / pageSize);
Строка 54:
Строка 55:
asp.net+entity Недопустимое имя столбца "author_books_ID_AUTHOR".
System.Data.SqlClient.SqlException: Недопустимое имя столбца "author_books_ID_AUTHOR".
Код:
Код:
namespace Library.Models
{
public class book
{
[Key]
public int ID_BOOK { get; set; }
public string NAME_BOOK { get; set; }
public int AUTHOR_ID { get; set; }
public int PUBLISHING_HOUSE_ID { get; set; }
public string YEAR_PUB { get; set; }
public int CATEGORY_ID { get; set; }
public int ISBN { get; set; }
public int ISSN { get; set; }
public int STATUS_ID { get; set; }
public int STATE_ID { get; set; }
public int LOCATION_ID { get; set; }
public int GENRE_ID { get; set; }
public author_book author_books { get; set; }
}
public class author_book
{
[Key]
public int ID_AUTHOR { get; set; }
public string A_FIRST_NAME { get; set; }
public string A_NAME { get; set; }
public string A_PATRONYMIC { get; set; }
public string A_DATE_BIRTH { get; set; }
public string A_COUNTRY { get; set; }
public virtual List books { get; set; }
}
}
{
public class book
{
[Key]
public int ID_BOOK { get; set; }
public string NAME_BOOK { get; set; }
public int AUTHOR_ID { get; set; }
public int PUBLISHING_HOUSE_ID { get; set; }
public string YEAR_PUB { get; set; }
public int CATEGORY_ID { get; set; }
public int ISBN { get; set; }
public int ISSN { get; set; }
public int STATUS_ID { get; set; }
public int STATE_ID { get; set; }
public int LOCATION_ID { get; set; }
public int GENRE_ID { get; set; }
public author_book author_books { get; set; }
}
public class author_book
{
[Key]
public int ID_AUTHOR { get; set; }
public string A_FIRST_NAME { get; set; }
public string A_NAME { get; set; }
public string A_PATRONYMIC { get; set; }
public string A_DATE_BIRTH { get; set; }
public string A_COUNTRY { get; set; }
public virtual List books { get; set; }
}
}