Tagged Questions
The vici tag has no wiki summary.
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:
...
0
votes
0answers
11 views
nullrefferent when runquery in viciCoolStorage in window phone 7
it's my code :
BookMark[] st = CSDatabase.RunQuery<BookMark>(
@"SELECT * FROM Bookmark WHERE link='" + link + "'");
class BookMark
{
public string link;
}
...
0
votes
1answer
22 views
How can I use the value of a ViewComponent's parameter in the component's view without passing it as ViewData?
Consider a ViewComponent that renders paging navigation. One of the parameters passed to the component is the current PageIndex (index of the viewed page).
How can I use this passed value in my ...
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?