annotate UnitTests/Linq/CompilerServices.vb @ 8:a34cfdde80d6

removed strong signing added FrameworkPathOverride for linux builds
author cin
date Wed, 29 Nov 2017 12:43:52 +0300
parents f990fcb411a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
1 Imports Data.Linq.Model
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
2
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
3 Public Module CompilerServices
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
4
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
5 Public Function CompareString(ByVal db As ITestDataContext) As IEnumerable(Of Person)
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
6 Return From p In db.Person Where p.FirstName = "John" Select p
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
7 End Function
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
8
f990fcb411a9 Копия текущей версии из github
cin
parents:
diff changeset
9 End Module