PetaPoco is a tiny and fast micro-ORM for .NET and Mono.

learn more… | top users | synonyms

0
votes
1answer
31 views

Fail to Insert Unicode into SQL Server using Peta Poco

Normally when we want to insert unicode letter into SQL Server, we can do N' foreign letter' But I'm using Peta Poco and I cannot add N (or I don't know how to) So how do I make sure my input can be ...
1
vote
1answer
43 views

Petapoco issue with nullable SQl Server smallint and int16 in vb.net

I have an SQL Server table with a view and a smallint field. All data in the view are automatically marked as nullable from Petapoco T4 generator since you can't specifiy it in a view. I'm fine with ...
1
vote
1answer
25 views

Using PetaPoco T4 Generated file with a WSP (Web Site Project) project

In my ASP.NET 4.0 WSP project, I'm using PetaPoco for most of the data access. I've successfully generated the classes from the Database using the T4 templates. But, by default, when you set install ...
1
vote
2answers
52 views

PetaPoco map comma separated string to a List of string

In the database, I've got a column that contains comma seperated values, like so: Foo.Bars varchar(100): @;1,5 In the code, the DTO contains a List<string>, like so: public class Foo { ...
0
votes
1answer
15 views

exclude member while using Fetch in Petapoco

Thinking of trying to use Petapoco.Fetch where member "content" is an c# object. "Content" member is byte[] member which I store in cache og want to retrieve specially .. not from database. So: SQL ...
1
vote
1answer
44 views

PetaPoco Should I use MultipleActiveResultSets=True?

From time to time we receive the following database connection error from PetaPoco in an ASP.NET MVC 4 app: There is already an open DataReader associated with this Command which must be closed ...
1
vote
1answer
54 views

Merge 2 POCO into 1 Class and execute CRUD

I am using PetaPoco as an ORM and want to combine 2 POCO into 1 class and then execute CRUD operations with this class. Right now I got something like this: *Table Person has an fk address_id.* ...
0
votes
0answers
55 views

Petapoco Paging timeout

I'm using Petapoco with SQL Server and when I run a query that returns me 5000 rows petapoco works fine, but when I try to page it with db.page<> it just don't work. I get a timeout error and SQL ...
0
votes
0answers
30 views

PetaPoco, ambigious settings error

Been testing (trying to test actually) the petapoco for a few hours and the problem i get is: Ambigious reference with the class name and namespace also in t4 generated database.cs file. ...
0
votes
1answer
80 views

petapoco shared connection

I am new to .net and this is my first project using c# winforms. for DAL i choose the petapoco. i go through the sample code of petapoco and i have some basic question where i get confused my ...
0
votes
1answer
56 views

PetaPoco not seeing class attributes

For some reason when I set up attributes on a Poco class for tablename and primary key PetaPoco is not seeing them and defaulting to ID autoIncrement = false [TableName("MyTableName")] ...
1
vote
1answer
116 views

DotnetNuke 7 Support for Spacial Data Types

I am wondering if there is any easy way in DotNetNuke 7 to use spacial data types, specifically System.Data.Spacial.DbGeography in regards to reading and writing to a database table. DotNetNuke ...
1
vote
1answer
107 views

PetoPoco ExecuteScalar - Invalid attempt to read when no data is present

I am working with DotNetNuke 7's DAL2 as outlined by Charles Nurse in his blog http://www.charlesnurse.com/Blog/tabid/226/EntryId/69/DAL-2-DataContext-Deep-Dive.aspx and have come across an ...
0
votes
1answer
167 views

PetePoco new version [closed]

I have noticed that the latest commit of petapoco on github https://github.com/toptensoftware/PetaPoco/ was 10 months ago . What happening with this product ? What can be considered as appropriate ...
0
votes
1answer
119 views

PetaPoco: Convert null value to empty String

Is there a simple way to hook into PetaPoco and convert string properties returned as null to an empty string? The DB I'm querying is Oracle.
2
votes
1answer
82 views

Fetch multiple in NPoco when children has its own mapping to do

I have been successful with fetching a parent and its children with NPoco FetchManyToOne with this code: public class Parent { public int Id { get; set; } public string Name { get; set; } ...
0
votes
0answers
45 views

Petapoco T4 generation script results in lots of errors

I used PetaPocos T4 generation script on an existing MySQL database and the result of it is about 103 errors. 99% it's ambiguity errors like (Ambiguity between 'DBConn.kat._ContactWhen' and ...
2
votes
1answer
209 views

PetaPoco (DotNetNuke) and SQL - Adding an object with a List property or other composite object

I'm using a Data Access Layer based on PetaPoco (DotNetNuke 7.0). I've used it successfully when working with relatively simple objects but I now have to insert an object which contains at least one ...
0
votes
1answer
88 views

Petapoco update datetime error

I was trying to update a few datetime field using Petapoco, but the update always fail so I look up my SQL profiler and found the following execution statement. exec sp_executesql N'UPDATE ...
0
votes
1answer
173 views

PetaPoco Output Param From Stored Procedure not returning

Using SQL Server 2005 w/ latest PetaPoco w/ the following code: Dim count = New SqlParameter("@Count", System.Data.ParameterDirection.Output) count.DbType = Data.DbType.Int32 Dim ...
2
votes
1answer
376 views

PetaPoco vs NPoco

NPoco seems to be a DLL that implments more advanced features of PetaPoco. PetaPoco installs code generation templates and PetaPoco.cs. The Nuget version of PetaPoco is 4.0.3. I know there are ...
0
votes
1answer
183 views

Composite primary keys with PetaPoco for Exists and GetById methods

I found this nice brach of PetaPoco by schootime wich handles composite primary keys. Now what I didn't find is how he handled in is version of PetaPoco methods wich require a primary key, with ...
0
votes
0answers
80 views

What's the derived db class in PetaPoco T4 used for?

I'm new to OOP so I'm not able to understand this myself reading the codes. The PetaPoco T4 template for generating DTOs, also created a derived class which inherits from the base Petapoco Database, ...
0
votes
3answers
495 views

Correct way to use PetaPoco in DAL layer (ASP.NET Web Forms VB.NET)

I'm trying to generate my DAL layer for ASP.NET web forms project using PetaPoco. Namespace Eva.Dal.Polls Public Partial Class EVAMOD_PL_CategoryDb Private db As Eva.Dal.Core.EvaDb Public ...
0
votes
1answer
144 views

Petapoco relationextensions fetchmanytoone gives me unwanted children by default

I have for example two tables like: CREATE TABLE [dbo].[Parent]( [Id] [int] NOT NULL, [Name] [nvarchar](50) NOT NULL ) ON [PRIMARY] GO BEGIN TRANSACTION; INSERT INTO [dbo].[Parent]([Id], ...
0
votes
1answer
159 views

Multiple Queries with PetaPoco /NPoco?

Say I have these 2 tables/domains [TableName("TableA")] [PrimaryKey("TableAId")] public class TableA { public int TableAId { get; set; } public string City { get; set; } ...
0
votes
3answers
162 views

PetaPoco - Property names from a dynamic type

I'm attempting to return names of properties of returned from database dynamic type: var d = mDataAccess.Single<dynamic>("select col1 = 'asd', col2 = 'qwe'"); object o = d; var props = ...
0
votes
1answer
116 views

Petapoco and parameters [closed]

Is there a way to use parameters for Insert queries? I get the following error when I try. /// <summary> /// Set active survey /// </summary> public int ...
2
votes
1answer
249 views

Mapping to collection in PetaPoco?

Is there a way to map the following to a Dictionary<int,int>? It seem it produces rows for as many returned results there are, but they have no values... Sql sql = new Sql() .Append("SELECT ...
3
votes
0answers
116 views

Petapoco and Azure SQL Connection Pool

At the heart of Petapoco.cs there is the function OpenShareConnection. I believe this cannot take advantage of the Connection Pool in SQL Azure. I am monitoring my connections and the connection count ...
0
votes
0answers
130 views

petapoco T4 template creating wrong poco

I am trying to use Petapoco in my asp.net web site. Following is my Database.tt // Settings ConnectionStringName = "Orgsetup"; // Uses last connection string in config if not specified ...
0
votes
1answer
59 views

how to use glimpse with petapoco?

I installed this plugin from nuget. I enabled glimpse through the glimpse.axd file but when I go to the petapoco tab I see this message "No database requests or database logging not switched on ...
0
votes
1answer
191 views

Error when trying to use PetaPoco T4 templates

I'm trying to use the PetaPoco T4 template (from NuGet, version 4.0.3) but when I try and run the template I get the following error: Running transformation: System.ArgumentException: URI formats ...
0
votes
1answer
31 views

showing exception on declaring new data member in class file using petapoco data access framework

I am using petapoco dataaccess framework, after declaring one new parameter in class file according to database table i am getting the exception below mentioned, in windows service at starting the ...
0
votes
2answers
166 views

PetaPoco mapping properties within properties

I am new to PetaPoco and initially I was liking it but then hit a wall which I simply dont know how to search for. I have a object which needs to set a property within one of its properties, ie ...
1
vote
1answer
181 views

Petapoco - Can't auto join

I have an object call Country and another call CounytryRegions as express below [TableName("Countries"), PrimaryKey("Code", autoIncrement = false)] public class Country { public Country() { ...
0
votes
0answers
197 views

Petapoco nullable date return null even if table have value

I am using petaPoco as my ORM. Can you please tell me why this returns a null for a nullable date field even though it holds a valid date in the table. I am new to ORM and C# employee emp = ...
0
votes
1answer
155 views

PetaPoco transaction isolation level

I have a c# windows service which updates data in my database using PetaPoco, all wrapped into a transaction. However, I need the database to be available for queries while the transaction runs (web ...
0
votes
1answer
192 views

How to use Npoco FetchOneToMany?

I am trying to use Npoco but running into some problems with FetchOneToMany I have a sql statement that joins 2 tables together and I output all the columns. [TableName("TableA")] ...
0
votes
0answers
187 views

petapoco mysql out parameter

I'm trying to get parameter out from a stored procedure using petapoco stored procedure: DELIMITER $$ CREATE PROCEDURE `prcUserInsert` ( EmailAddress varchar(100) ,Password varchar(100) ...
0
votes
2answers
119 views

PetaPcoro T4 template compilation error

I am running PetaPoco template T4 on my database and it generates the following error: Running transformation: System.InvalidOperationException: Sequence contains more than one matching element ...
3
votes
1answer
1k views

Dapper vs Petapoco - Easy data access in ASP.NET 4.5 Web Application [closed]

I want to use an ORM with my new ASP.NET 4.5 project. I am developing my project with Visual Studio 2012. I want to know what are the advantages of using various ORM products, including the following: ...
0
votes
1answer
140 views

PetaPoco complex types posting to controller

As per a question that I asked yesterday I was trying to find a way to dynamically create more text boxes and have those map to my view's model so upon post to the server it will grab all the ...
0
votes
2answers
143 views

What's wrong with this Oracle query?

Below is a query generated by the PetaPoco ORM for .NET. I don't have an Oracle client right now to debug it and I can't see anything obviously wrong (but I'm a SQL Server guy). Can anyone tell me ...
0
votes
1answer
165 views

Starting with DDD pattern in business layer

I have separated the various layers (Class Library Projects) in my solution explorer like this: I want to use PetaPoco micro-ORM and someone suggested me to add PetaPoco in the Repository layer. As ...
0
votes
1answer
117 views

In which project to add reference to PetaPoco?

I am new to Design Patterns and referring to a book by Scott Millet : Professional ASP.NET Design Patterns. In the chapter where it discusses "Separation of Concerns", I have added projects ...
0
votes
3answers
387 views

Petapoco: How to databind gridview using join from two tables?

I dont want to do using a custom class. var q = db.Query<dynamic>(query); //This does not work query has joins and custom created columns from multiple tables.
2
votes
1answer
170 views

Can petapoco handle joins and query generated columns?

I have this object called Event, and event has some other linked tables. [PetaPoco.ResultColumn] public Models.User Presenter { get; set; } Petapoco does a wonderful job by fetching my objects when ...
0
votes
0answers
129 views

petapoco Page not working with distinct

here is my code var sql = PetaPoco.Sql.Builder.Append("Select distinct a.Id, a.CategoryId, a.SubCategoryId, Cast(a.Title as nvarchar(max)) as Title, a.SubCategoryName, a.DateHappend, a.MyCulture, ...
0
votes
0answers
83 views

petapoco like query not working with unicode strings in table variable

I have a LIKE query that returns the correct results. Fetch<table1>(select * from table1 where col1 like @qq, new {qq = '%bla%'}) However, if I use this query in a table variable it does not ...

1 2 3 4