This example demonstrating a simple ASP.NET MVC3 application using XPO as Data Access Layer.
See also: How to use XPO in an ASP.NET MVC application
Question Comments
Added By: TPS Programmer at: 11/3/2014 2:38:52 AM
how to convert this syntaks
@model IEnumerable<CustomerViewModel>
@Html.Partial("IndexPartial", Model);
into vb syntax ?
Added By: TPS Programmer at: 11/3/2014 2:40:10 AMalmost forget, because in VB source code, index.cshtml still in C#, not in VBHTML
Added By: Anthony (DevExpress Support) at: 11/3/2014 5:01:27 AMHi,
The code would be as follows:
[VB.NET]@ModelType IEnumerable(Of CustomerViewModel) @Html.Partial("IndexPartial", Model)
As for the example, we will correct the syntax as soon as possible.