Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hello sir,

i am a new in knockout,
so trying to learn knockout with mvc
in one o fexample i seen these coding

C#
public class HelloWorldModel
{
    public string FirstName { get; set; }
    public string LastName { get; set; }

    [Computed]
    [ScriptIgnore]
    [JsonIgnore]
    public string FullName
    {
        get { return FirstName + " " + LastName; }
    }
}


so my question is how to add namespace for this [Computed], [ScriptIgnore], [JsonIgnore],

sir if you know any website link to learn mvc with knockout then plese reffer me

thanks in advance
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900