Is this not the ignite dev user forum. I am programming tables in ignite so why 
do I need to go there when they always tell me to come here for dev related 
questions?

The issue is code and likely ignites ability to map. Net decimal to java big 
decimal. I really don't think the user group is the place to ask, really?



On 18 Sep 2018, 16:55, at 16:55, Dmitriy Pavlov <dpavlov....@gmail.com> wrote:
>Hi, is it related to some contribution? If not, I propose
>u...@ignite.apache.org as a better place to ask.
>
>вт, 18 сент. 2018 г. в 18:43, wt <waynethe...@gmail.com>:
>
>> i have the following class
>>
>>         [QuerySqlField]
>>         public int vd { get; set; }
>>         [QuerySqlField]
>>         public long sharesinindex { get; set; }
>>         [QuerySqlField]
>>         public string name { get; set; }
>>         [QuerySqlField]
>>         public string isin { get; set; }
>>         [QuerySqlField]
>>         public string sedol { get; set; }
>>         [QuerySqlField]
>>         public string ric { get; set; }
>>         [QuerySqlField]
>>         public decimal close { get; set; }
>>         [QuerySqlField]
>>         public decimal rate { get; set; }
>>
>> when i configure ignite with this class in .net and start the server
>it
>> correctly sets all the other fields just not the decimals. The
>> documentation
>> states
>>
>> DECIMAL
>> Possible values: Data type with fixed precision and scale.
>>
>> Mapped to:
>>
>> Java/JDBC: java.math.BigDecimal
>> .NET/C#: decimal
>> C/C++: ignite::Decimal
>> ODBC: SQL_DECIMAL
>>
>>
>> Why is Ignite not mapping this correctly ->  tables.png
>> <
>>
>http://apache-ignite-developers.2346864.n4.nabble.com/file/t604/tables.png>
>>
>>
>>
>> here is the config
>>
>>             var cfg = new IgniteConfiguration
>>             {
>>                 DiscoverySpi = new TcpDiscoverySpi
>>                 {
>>                     IpFinder = new TcpDiscoveryStaticIpFinder
>>                     {
>>                         Endpoints = new[] { "127.0.0.1:47500..47509"
>}
>>                     },
>>                     SocketTimeout = TimeSpan.FromSeconds(0.3)
>>                 },
>>                 CacheConfiguration = new[]
>>                 {
>>                     new CacheConfiguration("IndexComposition")
>>                     {
>>                         SqlSchema = "IndexComposition",CacheMode =
>> CacheMode.Replicated,
>>                         QueryEntities = new []
>>                         {
>>                             new
>> QueryEntity(typeof(int),typeof(IndexComposition))
>>                         }
>>                     }
>>                 }
>>
>>             };
>>
>>
>>
>> --
>> Sent from: http://apache-ignite-developers.2346864.n4.nabble.com/
>>

Reply via email to