Tagged Questions
Vici CoolStorage is a fully typed Object Relational Mapping library for .NET 3.5, Windows Phone and MonoTouch. CoolStorage is currently (April 2011) the only ORM that runs on Windows Phone for local data access using SQLite in isolated storage
4
votes
1answer
142 views
CoolStorage on Windows Phone 7 - Mapping Problem
I am using Vici.CoolStorage in a Windows Phone 7 application to access a SQLite database. I am getting a Null Reference Exception on this line:
CSList<Regimen> regimens = Regimen.List();
I ...
2
votes
0answers
37 views
Vici coolstorage text fields not showing properly in WP7 app (some characters missing)
I have a sqlite database that I access from my WP7 app using the coolstorage ORM. The charset used for the text fields of the db (which are in German) is UTF-8. The database is quite simple and only ...
2
votes
0answers
81 views
how to you alter a sqlite db with coolstorage on wp7?
I'm writing an app for wp7 using coolstorage and sqlite as the database.
The reason I chose sqlite was because it appears to have a good ability to do updates to the schema.
However, in my testing I ...
2
votes
1answer
322 views
Vici.CoolStorage: filter with ManyToOne and ManyToMany relation
I got an exception in Vici.CoolStorage 'Unable to cast object of type 'System.String' to type 'QueryExpression' when using the following filter on the .List() method of my Event class:
...
1
vote
1answer
27 views
How to access extra data in Many-to-Many relationship in CoolStorage?
I'm using CoolStorage in a project where I have some Many-to-Many relationships. Some of the join tables have extra data on them which describe the relationship.
For example: Table Alpha, Beta, and ...
1
vote
1answer
21 views
How do I switch between different contexts in CoolStorage
I ave different databases with the same schema, the only difference is the connectionstring.
Is it possible to use the context options in CoolStorage to switch the context of the CoolStorage instance ...
1
vote
2answers
228 views
Using Vici cool Storage with monodroid
Hey, At the moment I'm not sure how officially supported it is but, there have been reports of people successfully using monodroid with vici coolStorage.
I have been able to drop the assemblies into ...
1
vote
1answer
153 views
Searching many-to-many relations with Vici CoolStorage
For an application used for managing booktitles and such, I'm using CoolStorage as an ORM.
The database has a table named 'titles'. Each title can have n authors, stored in the 'authors' table. The ...
1
vote
1answer
147 views
how do i execute a stored procedure with vici coolstorage?
I'm building an app around Vici Coolstorage (asp.net version). I have my classes created and mapped to my database tables and can pull a list of all records fine.
I've written a stored procedure ...
1
vote
2answers
117 views
Sorting on nullable child property in CoolStorage
Lets says we have Films and HeaderItems. Sometimes a Film has a HeaderItem linked to it OneToOne but not always.
Now I want to sort all the Films on their title BUT I would like the films with a ...
1
vote
1answer
118 views
What's the difference between Delete and Remove in a many-to-many relationship in CoolStorage
A many-to-many relationship has to methods to remove items: Delete and Remove. What is the difference between these two?
0
votes
1answer
133 views
Is there a simple ORM for .Net like Vici CoolStorage?
I really like Vici CoolStorage because it is very simple to use and work with MySQL. I've tried NHibernate but I just don't get it. Does anyone know or can you suggest a .Net ORM that is simple and ...
0
votes
1answer
264 views
How do I order by NEWID in CoolStorage?
How can I order my resultset by NEWID to get a random order?