0
votes
0answers
7 views
Subsonic Simple Repository String Lengths
I'm playing around with the SimpleRepository provider (with automigrations) in SubSonic 3 and I have an annoying problem:
The only way I can control the string length in my databa …
1
vote
1answer
26 views
Subsonic map POCO to table of a different name
I started a small project and wanted to use Subsonic's SimpleRepository for my database layer. If I have table in my database called Member and I want to create a POCO called T …
1
vote
1answer
24 views
Manage data structures in the database or in code?
I've always had a difficult time deciding where the best place is to manage my "master" set of data structures for my data access layer. Traditionally, I've always started with a …
0
votes
3answers
34 views
Get distinct month and year with SubSonic
I have date type column (MySQL):
SELECT invdate FROM invoices;
invdate
-------
2009-08-22
2009-07-12
2009-08-23
-------
and I want get month and year like this:
SELECT DISTINC …
2
votes
2answers
119 views
Subsonic:SimpleRepository Parent Child relationship
Hi,
I am trying to use the SimpleRepository feature in Subsonic3 - first of all, I must say a big thanks to RobC - Subsonic really rocks, and I can't wait to see additional updates …
0
votes
2answers
132 views
Subsonic - can anyone provide an example of using Subsonic SimpleRepository to persist a list/array of objects?
I'm looking for possible ways to persist the following classes. Subsonic SimpleRepository looks like it might work, and people have said it should, when I asked a more general que …
1
vote
2answers
87 views
SubSonic generated DB Schema, binary types?
How do you create binary columns in the DB using SubSonic's Schema builder?
So tonight I decided to dive into SubSonic. I see a lot of questions on here and great responses by Rob …
1
vote
1answer
76 views
Db4o object update
Hi,
I'm using db4o for a simple app, with an embedded db. When I save an object, and then change the object, is it suppose that db4o returns the changed object?
Here's the code:
…
1
vote
1answer
68 views
How do you handle SubSonic ‘relationships’ with migration?
According to this article:
http://subsonicproject.com/docs/3.0%5FMigrations
Bottom line: if you're a developer that is concerned about database design,
migrations might not be for …
0
votes
1answer
33 views
How do I use SimpleRepository without the migration approach?
I am evaluating SubSonic for use in Phase 2 of a large project. This is an ASP.NET project, with 700 tables in a SQL Server database.
We are planning for our domain model to cons …
2
votes
1answer
73 views
Lifetime management of a SimpleRepository
I'm just starting with SubSonic 3 and playing with the SimpleRepository approach. What's the intended lifetime of SimpleRepository classes when used in a desktop application?
Are …
1
vote
1answer
46 views
Does SimpleRepository support any in-memory or other “alternative” database engines?
I am looking for options other than MS SQL Server/Express. There seem to be quite a few file based or in-memory database engines supporting some subset or dialect of SQL. Preferabl …
2
votes
3answers
136 views
Parent and Child object in SimpleRepository
How would it work in Subsonic's SimpleReporitory if I wanted to be able to have a 1 to many relationship between objects?
Would I have to create a bridge object and then build my …
0
votes
3answers
186 views
Subsonic: Simple Repository - Update Crash
Whenever I attempt to use a simple repository to simply update a record, I get an object reference not set to an instance of an object error. I suspect that I am doing something in …
3
votes
1answer
114 views
Subsonic 3, SimpleRepository, MsSql: How to find rows with a null field?
How ca I use Subsonic's Find method to search for rows with a field containing the "null" value. For the sake of the discussion, let's assume I have a c# class called "Visit" which …
