Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
540 views

Subsonic:SimpleRepository Parent Child relationship

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 to the ...
4
votes
3answers
391 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 parent object at ...
3
votes
1answer
381 views

Subsonic 3, SimpleRepository, SQL Server: How to find rows with a null field?

How ca I use Subsonic's Find<T> 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 contains a ...
3
votes
2answers
237 views

Can SubSonic's SimpleRepository operate in-memory?

I'm working with Subsonic's SimpleRepository, and I'm trying to write some unit tests so they don't touch the database, but I'm having trouble figuring out if SimpleRepository can work against ...
2
votes
0answers
64 views

Invalid Object Name Exception Thrown on Update

I have a project using Simple Repository which was working before I rebuilt my dev machine. This may just be coincidence but I am now using SQL Server 2008 Express to develop against rather than 2005 ...
2
votes
3answers
550 views

Lambda Contains in SimpleRepository.Find

In SubSonic 3.04's SimpleRepository, I cannot seem to perform a Contains operation within a lambda expression. Here's a trivial example: SimpleRepository repo = new ...
2
votes
1answer
48 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 database and used a ...
2
votes
1answer
124 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 you expected to keep ...
1
vote
1answer
168 views

SubSonic SimpleRepository - Foreign Objects

SubSonic SimpleRepository doesn't seem to have a lot of support for foreign relations. How can I have foreign relationships in my code models that persist and load from the database naturally?
1
vote
3answers
355 views

SubSonic Simple Repository One-To-Many

I made a class like: public class Video { public Guid VideoID { get; set; } public VideoCategory VideoCategory { get; set; } public int SortIndex { get; set; } public string Title { ...
1
vote
1answer
206 views

Subsonic SimpleRepository Nullable string problem

I am having a problem with subsonic simplerepository. I have a users class and it has some optional fields.these optional fields are of type string. As soon as I try to persist my object , if the ...
1
vote
1answer
287 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 TeamMember. Can I map ...
1
vote
1answer
148 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 you. Ok, that's ...
1
vote
1answer
77 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. Preferably it would be an ...
1
vote
2answers
361 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 and many others. I ...
1
vote
1answer
656 views

Db4o object update

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: [Test] public void ...
0
votes
0answers
170 views

WPF DataGrid Binding: How to auto-update? (connected to SubSonic3 SimpleRepository objects)

Lately I've been working with WPF4 and VS2010 and trying to learn how to bind controls like DataGrid to a Repository (like SimpleRepository from SubSonic3 ORM.) The problem that I keep running into is ...
0
votes
1answer
139 views

Getting Started With Subsonic Repository for a 3 tier app

I was able to get active record running right away. The instructions for getting started were great and in no time I had built a webservice that would let me create and read widgets in my existing ...
0
votes
2answers
167 views

Get Id back when using SubSonic SimpleRepository AddMany

How can I get the Id back to the object when I'm using the AddMany function with SubSonic SimpleRepository. All my objects still get Id=0 when after using it. SimpleRepository repository = new ...
0
votes
1answer
53 views

Stored Procedure with SimpleRepository

How to I execute a Stored Procedure with SimpleRepository and get a Typed List as a answer? I'm using SubSonic 3. Thanks.
0
votes
1answer
62 views

Subsonic Simple Repository - Persist Private Property

I am making use of Subsonic SimpleRepository i have a class: public class X{public string abc {get; set;}private string def {get; set;}} property "def" is only set within that class and i don't ...
0
votes
2answers
84 views

SimpleRepository auto migrations with indexes

I am using subsonic simplerepo with migrations in dev and it makes things pretty easy but I keep running into issues with my nvarchar columns that have an index. My users table has an index defined on ...
0
votes
1answer
136 views

Subsonic SimpleRepository upload image

I have been using SimpleRepository for months now, and for the first time i have to upload and store an Image/Document in the database My Class looks as follow: public class Document: ObjectMetaData ...
0
votes
1answer
54 views

Columns not created

I'm using Subsonic (SimpleRepository) in my new project and enjoy using it but... With one, and only one of my table, it does not create all the columns and i don't understand why. Here is the code ...
0
votes
1answer
103 views

Subsonic adding a DB provider for Simple Repository

I was wondering--what part of Subsonic 3 needs to be modified to support a different database under a Simple Repository scenario? I haven't found any documentation on this point. Subsonic 3 seems to ...
0
votes
1answer
53 views

Subsonic Simple Repo for high volume site

Simple Repo has given me a competitive edge in my consulting. I can finish projects much faster than I could in the "cmd.Parameters.Add(param)" days. As things progress on this end im getting into ...
0
votes
1answer
92 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 database tables is by ...
0
votes
3answers
481 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 DISTINCT MONTH(invdate) AS ...
0
votes
2answers
801 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 question. But I've ...
0
votes
1answer
72 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 consist of POCO classes ...
0
votes
3answers
659 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 incorrect, can anyone ...