Murthy, Sorry, doesn't understand the question. Essentially Java will do the following: 1) Connect to database using JDBC. If you use SQL Server you will need to download JDBC driver and it put to %IGNITE_HOME%/libs folder. 2) It will create corresponding Java classes based on your inputs and database metadata.
When it is done, you should configure *CacheJdbcPojoStoreFactory *as it is explained in the documentation*.* At this point you would be able to read-through or write-through if you were Java user. For .NET you will have to manually create corresponding model classes taking in count interoperability issues. See https://apacheignite-net.readme.io/docs/platform-interoperability for more information. Please let us know if you have further questions. Vladimir. On Wed, Mar 30, 2016 at 4:25 PM, Murthy Kakarlamudi <[email protected]> wrote: > Vladimir, Pavel, > Thanks for your responses. I will try generating classes using Java > and see if I can recreate them in .NET. Have a question though. The schema > import tool generates > *jdbc*:sqlserver://[host]:[port][;databaseName=database]. > Assuming jdbc config does not work in .NET classes while setting up Store > Factory. Am I correct in my assumption? > > Thanks, > Satya. > > On Wed, Mar 30, 2016 at 5:00 AM, Pavel Tupitsyn <[email protected]> > wrote: > >> Hi Satya, >> >> It should be possible to set up automatic persistence for Ignite.NET >> using Java mechanisms described there: >> https://apacheignite.readme.io/docs/automatic-persistence >> Basically, you'll have to import schema, compile resulting classes and >> put them to classpath, and update Spring XML configuration accordingly. >> It may not be convenient for .NET user, but there is no other way >> currently. >> >> Pavel >> >> >> On Wed, Mar 30, 2016 at 9:18 AM, Vladimir Ozerov <[email protected]> >> wrote: >> >>> Hi, >>> >>> Ignite is able to work with persistent store with read-through and >>> write-through semantics in both Java and .NET versions. You can find >>> relevant docs for .NET here: >>> https://apacheignite-net.readme.io/docs/persistent-store >>> Automatic persistence is a feature built on top of persistent store and >>> is currently available only in Java. >>> >>> Please let me know if you have any further questions. >>> >>> Vladimir. >>> >>> On Wed, Mar 30, 2016 at 6:05 AM, Murthy Kakarlamudi <[email protected]> >>> wrote: >>> >>>> Hi, >>>> Our .NET application needs read-through and write-through >>>> capabilities. I see that there is Automatic Persistence feature for Java >>>> and not for .NET in 1.5 version. Did I miss anything or is it not supported >>>> in .NET for 1.5? >>>> >>>> Thanks, >>>> Satya. >>>> >>> >>> >> >
