PLINQO is an enhanced alternative for the most popular ORM frameworks. It is a set of CodeSmith Templates designed to simplify the creation and maintenance of data models, as well as provide you with an easy to use data access layer that adhears to best practices.
Questions tagged [plinqo]
24 questions
0
votes
1 answer
Anyone have any issues with using PLINQO and ASP.NET MVC 2.0?
I'm asking because I'm working on an ASP.NET MVC 1.0 site, thinking of upgrading to ASP.NET MVC 2.0. Then I read that PLINQO 5.0 was released (I had never heard of PLINQO before) and have been impressed with what PLINQO appears to be capable of.
1)…

Chaddeus
- 13,134
- 29
- 104
- 162
0
votes
1 answer
PLINQO Not Naming Entities Correctly
I have my CSP file set up to use TableNaming and EntityNaming as Singular:
Singular
Singular
Yet the generated entities are plural.
For instance, I have a table called Companies. The…

CleverPatrick
- 9,261
- 5
- 63
- 86
0
votes
3 answers
Plinqo 4 vs EF 4
Does anyone has experience with plinqo 4?
what are the benefits vs EF 4?

Adiel
- 331
- 1
- 4
- 10
0
votes
2 answers
Correct way to remove M:M in PLINQO?
Suppose you have this table structure:
Patient -> PatientTag -> Tag
A typical N:M relationship between patients and tags, PatientTag being the intermediate entity with both FKs. (PatientId and TagId).
I want to remove a specific tag, I have its ID.…

Martin Marconcini
- 26,875
- 19
- 106
- 144
0
votes
1 answer
Use strongly typed data rather than a string to bind to a drop down list
Given the following class....
namespace IMTool.Data
{
public partial class AllContracts
{
internal class Metadata
{
public int ContractId { get; set; }
[Required]
public string Name { get;…

Rippo
- 22,117
- 14
- 78
- 117
0
votes
1 answer
How to catch BrokenRuleException in PLINQO?
I’ve created a custom rule by adding the
static partial void AddSharedRules()
{
RuleManager.AddShared(
new CustomRule(
"TagName",
"Invalid Tag Name, must be between 1…

Martin Marconcini
- 26,875
- 19
- 106
- 144
0
votes
1 answer
How can improve this Linq query expressions performance?
public bool SaveValidTicketNos(string id,string[] ticketNos, string checkType, string checkMan)
{
bool result = false;
Listenties=new List();
using (var context =…

YangShuang
- 25
- 7
0
votes
1 answer
Generating EDMX output with PLINQO EF and Oracle takes extremely long or is stuck
To make a long story short, I am trying to generate a .EDMX file from an Oracle 11g Express database using PLINQO for Entity Framework and CodeSmith 6.5. Rendering the edmx.csp output has been running for 5 minutes as I type this, and I have yet to…

Captain Kenpachi
- 6,960
- 7
- 47
- 68
0
votes
1 answer
Count submitted queries
So I'm using PLINQO Linq2Sql on a large project. I was wondering if there was any way I could count the number of queries that get submitted to the SqlServer via code using either PLINQO or Linq2Sql?
Like if I wrote the code
var a =…

Kelly Elton
- 4,373
- 10
- 53
- 97