-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHomeController.vb
56 lines (49 loc) · 1.67 KB
/
HomeController.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports DevExpress.DataAccess.Sql
Imports System.Web.Mvc
Imports DevExpress.Xpo
Imports Mvc_DbStorage_Sample_VB.Services.DAL
Namespace Mvc_DbStorage_Sample.Controllers
Public Class HomeController
Inherits Controller
<HttpGet>
Public Function Index() As ActionResult
Using session = SessionFactory.Create()
Dim reports = session.Query(Of ReportEntity)().Select(Function(x) New ReportModel With {.Url = x.Url}).ToArray()
Dim firstReport = reports.FirstOrDefault()
Dim model = New IndexModel With {
.SelectedReportUrl = If(firstReport IsNot Nothing, firstReport.Url, String.Empty),
.Reports = reports
}
Return View("Index", model)
End Using
End Function
<HttpPost>
Public Function Delete(ByVal url As String) As ActionResult
Using session = SessionFactory.Create()
Dim report = session.GetObjectByKey(Of ReportEntity)(url)
session.Delete(report)
session.CommitChanges()
End Using
Return Index()
End Function
<HttpPost>
Public Function Design(ByVal url As String) As ActionResult
Return View("Designer", New DesignModel With {
.Url = url,
.DataSource = CreateSqlDataSource()
})
End Function
Private Function CreateSqlDataSource() As SqlDataSource
Dim ds As New SqlDataSource("NWindConnectionString")
ds.Name = "NWind"
Dim categoriesQuery As SelectQuery = SelectQueryFluentBuilder.AddTable("Categories").SelectAllColumns().Build("Categories")
ds.Queries.Add(categoriesQuery)
ds.RebuildResultSchema()
Return ds
End Function
End Class
End Namespace