SQL:
[FirstName] [nvarchar](250) NULL,
[MiddleInitial] [nvarchar](250) NULL,
[Surname] [nvarchar](250) NULL,
Mapping:
public string FirstName { get; set; }
public string MiddleInitial { get; set; }
public string Surname { get; set; }
m.Map(x => x.FirstName).Length(255);
m.Map(x => x.MiddleInitial).Length(255);
m.Map(x => x.Surname).Length(255);
I need to add the Fullname field consisting of the [FirstName] + " " +[MiddleInitial]+ " " + [Surname]. (For using search in jqGrid)
Pls help me.