bonjour
j'ai des requetes qui utilise des champs du type 'geography'
mais je n'arrive pas à savoir le type que je doit donner aux variable qui utile ce format
Exemple
dans System.Data.SqlTypes je ne trouve pas le type Microsoft.SqlServer.Types.SqlGeography
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 Private _MagLatLong As ??????? Public Property MagLatLong() As ??????? Get Return _MagLatLong End Get Set(ByVal value As ???????) _MagLatLong = value End Set End Property //// Result.Add(New Magasin With {.MagId = reader("MagId"), .MagEnseigne = reader("EnseigneNom"), .MagImage = reader("EnseigneImage"), .MagCedex = reader("CedexCode"), .MagAdresse = reader("MagAdresse").ToString, .MagVille = reader("CedexVilleUpper"), .MagLatLong = reader("MagLatLong")})
Merci pour vos infos
Partager