/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/VS_Snippets_Data/DLinqObjectModel/vb/Module1.vb
40 строк
622 B
Next Turn
Format codes based on .editorconfig, Part 16 (#18985)
17 июн 2020, 18:36
Не верифицирован
17 июн 2020, 18:36
966ceee
Код
Авторство
О чём код?
Imports System.Data.Linq Imports System.Linq Imports System.Data.Linq.Mapping Imports System.Reflection Module Module1 Sub Main() End Sub ' <Snippet1> <Table(Name:="Customers")> _ Public Class Customer Public CustomerID As String ' ... Public City As String End Class ' </Snippet1> End Module Module Module2 ' <Snippet2> <Table(Name:="Customers")> _ Public Class Customer <Column(IsPrimaryKey:=True)> _ Public CustomerID As String <Column()> _ Public City As String End Class ' </Snippet2> End Module