Repository: ignite Updated Branches: refs/heads/ignite-1956 f421c53ab -> a938dc853
IGNITE-1956: Fixed configs. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a938dc85 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a938dc85 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a938dc85 Branch: refs/heads/ignite-1956 Commit: a938dc85359c08faf81a49a0dad42bb16490ad41 Parents: f421c53 Author: vozerov-gridgain <[email protected]> Authored: Thu Nov 26 17:27:09 2015 +0300 Committer: vozerov-gridgain <[email protected]> Committed: Thu Nov 26 17:27:09 2015 +0300 ---------------------------------------------------------------------- .../dotnet/examples/Config/example-cache-query.xml | 9 ++++++++- modules/platforms/dotnet/examples/Config/example-cache.xml | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/a938dc85/modules/platforms/dotnet/examples/Config/example-cache-query.xml ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Config/example-cache-query.xml b/modules/platforms/dotnet/examples/Config/example-cache-query.xml index a3b854b..5bc9399 100644 --- a/modules/platforms/dotnet/examples/Config/example-cache-query.xml +++ b/modules/platforms/dotnet/examples/Config/example-cache-query.xml @@ -38,7 +38,14 @@ <value>Apache.Ignite.ExamplesDll.Binary.Employee</value> <value>Apache.Ignite.ExamplesDll.Binary.EmployeeKey</value> <value>Apache.Ignite.ExamplesDll.Binary.Organization</value> - <value>Apache.Ignite.ExamplesDll.Binary.OrganizationType</value> + </list> + </property> + <property name="typesConfiguration"> + <list> + <bean class="org.apache.ignite.platform.dotnet.PlatformDotNetBinaryTypeConfiguration"> + <property name="typeName" value="Apache.Ignite.ExamplesDll.Binary.OrganizationType" /> + <property name="enum" value="true" /> + </bean> </list> </property> </bean> http://git-wip-us.apache.org/repos/asf/ignite/blob/a938dc85/modules/platforms/dotnet/examples/Config/example-cache.xml ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Config/example-cache.xml b/modules/platforms/dotnet/examples/Config/example-cache.xml index 21a6a76..949f3a4 100644 --- a/modules/platforms/dotnet/examples/Config/example-cache.xml +++ b/modules/platforms/dotnet/examples/Config/example-cache.xml @@ -37,7 +37,14 @@ <value>Apache.Ignite.ExamplesDll.Binary.Employee</value> <value>Apache.Ignite.ExamplesDll.Binary.EmployeeKey</value> <value>Apache.Ignite.ExamplesDll.Binary.Organization</value> - <value>Apache.Ignite.ExamplesDll.Binary.OrganizationType</value> + </list> + </property> + <property name="typesConfiguration"> + <list> + <bean class="org.apache.ignite.platform.dotnet.PlatformDotNetBinaryTypeConfiguration"> + <property name="typeName" value="Apache.Ignite.ExamplesDll.Binary.OrganizationType" /> + <property name="enum" value="true" /> + </bean> </list> </property> </bean>
