Marco Dissel

Results 32 comments of Marco Dissel

Context is creating/dropping tables, views, indexes functions, etc. (using postgresql) (preferrable re-using the attribute mapping from repodb )... Thanks

Yes, but does it handle the class /field mapping from repodb attributes?

Why implement the loading with a join? You could minimize the duplicate column information in the result query by loading the information with a multi query like this: ``` SELECT...

But I do think it's a great addition if RepoDb has support for: `Query(c => c.Id = 10045).Include(c => c.Orders).Include(c => c.Address)` and that is translated into sql by RepoDb...

> Actually, what you requested is can be done by `QueryMultiple` method. See the code below. Yes, my simple sample can be solved, but not if it's slightly more complex,...

Can you show/catch the result JSON from Mailchimp (using fiddler or something like that)?

One reason to not do this is, if you convert the object back to json this will result into a empty array instead of null value (resulting in leaving the...

Use the GetAllMembersForList and specify segment as the last parameter like this:~ ``` c# public static global::MailChimp.Campaigns.CampaignSegmentOptions CreateChangedSinceCriteria(DateTime lastSync, DateTime maxDate) { global::MailChimp.Campaigns.CampaignSegmentOptions result = new global::MailChimp.Campaigns.CampaignSegmentOptions(); result.Match = "all";...

It's not only the json part that's being used, also the REST features from ServiceStack.

Can you verify if the json that is send is correct and catch the resulting json using fiddler? Please post the json for request and respone. ps. create a copy/paste...