📄 business.format
字号:
Imports System
Imports System.Data
Imports OrmLib
Namespace {0}
<Serializable()> Public MustInherit Class Business : Inherits BusinessBase
Protected Sub New(ByVal dataContext As DataManager)
Me.DataContext = dataContext
Me.DataSet = dataContext.DataSet
End Sub
Friend DataContext As DataManager
Protected DataSet As DataSet
Protected Relations As DataRelationCollection
Friend Property row() As DataRow
Get
Return Me.dataRow
End Get
Set(ByVal Value As DataRow)
Me.dataRow = Value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -