The type of one of the primary key values did not match the type defined in the entity. See inner exception for details

后端 未结 4 1425
轻奢々
轻奢々 2021-01-12 09:41

I have the followng method:-

public ActionResult CustomersDetails(string[] SelectRight)
{
    var selectedCustomers = new SelectedCustomers
    {
        Inf         


        
4条回答
  •  滥情空心
    2021-01-12 10:04

    You pass to Find method string but expeced Int64 The argument types 'Edm.Int64' and 'Edm.String'.

提交回复
热议问题