How to do - MS SQL C# Excel Access
Tuesday, 25 July 2017
MVC - Fix Error - CS1660: Cannot convert lambda expression to type 'string' because it is not a delegate type
watch solution on YouTUbe
CS1660: Cannot convert lambda expression to type 'string' because it is not a delegate type
to fix it replace
@Html.Label(model => model.LastName)
with
@Html.Label(Model.First().LastName)
1 comment:
Unknown
8 April 2021 at 10:46
I don't know if this fully fixes the issue for some.
It didn't work for me. :/
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
I don't know if this fully fixes the issue for some.
ReplyDeleteIt didn't work for me. :/