This question is locked. New answers and comments are not allowed.
Hi. I'm working on a project in VB.NET that's being converted from WebForms to MVC. Unfortunately I'm stuck in VB though I'd rather use C#. This is 2008/.NET3.5 (VB 9), not VB10.
I see the posts about how there are limitations to doing this in VB, but I'm wondering if it's possible at all. Can someone please help me convert a simple piece of code like the following into VB? I've tried converter.telerik.com, but the piece of code that results still won't compile.
Thanks!
I see the posts about how there are limitations to doing this in VB, but I'm wondering if it's possible at all. Can someone please help me convert a simple piece of code like the following into VB? I've tried converter.telerik.com, but the piece of code that results still won't compile.
Html.Telerik().Grid(Model) |
.Name("OrdersGrid") |
.Columns(colums => |
{ |
colums.Add(o => o.OrderID); |
colums.Add(o => o.ShipAddress); |
colums.Add(o => o.RequiredDate); |
}) |
.Pageable() |
.Sortable() |
.Render(); |
Thanks!