Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
152 views

C#/PLINQO - Detach and re-attach the same entity to the same context fail

I am using PLINQO for my LINQ-TO-SQL data layer. I have the following piece of code (not real code, just to re-produce the error I am getting): var context = new MyDataContext(); var user = ...
1
vote
2answers
423 views

LINQ2SQL + PLINQO: How does one handle a simple situation like this?

I’m new to PLINQO, I’m fairly new to LINQ2SQL and I’m adding a new DAL (called DAL2) in parallel with our old existing DAL. Our idea is to start using linq2sql for every new thing we add and slowly ...
0
votes
1answer
53 views

can you use plinqo with T4 or other code generation tools???

I want to use plinqo for my personal project, but seem like you need codesmith pro. its 299 bucks. is there a way we can use it with other code generation tools? I only need it for linq many to ...
0
votes
1answer
130 views

PLINQO and Transactions problem

I just started working with PLINQO to implement the repository layer and the data tier in my n-tier distributed system. The data tier consists of the following layers: repository, data provider, data ...
0
votes
1answer
88 views

PLINQO many-to-many .Remove(…)

Why, in PLINQO, is the following valid; parent.ManyToManyChildList.Add(child) context.SubmitChanges(); But the following is not? parent.ManyTomanyChildList.Remove(child) context.SumbmitChanges(); ...
0
votes
1answer
40 views

What's a strategy for accessing Plinqo metadata from an external program?

I am using Plinqo and Linq-to-SQL to implement a repository. I'd like to inform the UI of validation rules by examining metadata and acting accordingly. Problem is, the Metadata classes in Plinqo are ...
0
votes
1answer
78 views

How to build custom PLINQO query by multiple id's?

Here's my table structure Places PlaceId PK Name ... PlaceCategories CatId PK Name ... PlaceCats PlaceId PK CatId PK Here's my query that pulls Places based on category id (table join) ...
0
votes
2answers
156 views

PLINQO / LINQ-To-SQL - Generated Entity Self Save Method?

Hi I'm trying to create a basic data model / layer The idea is to have: Task task = TaskRepository.GetTask(2); task.Description = "The task has changed"; task.Save(); Is this possible? I've tried ...
0
votes
1answer
159 views

PLINQO Primary key AND index problem

I've two tables, Profile and ProfileCategory ProfileId INT IX UserId UNIQUEIDENTIFIER PK (For one-to-one mapping with aspnet_membership) CompanyName Description ProfileCategory CategoryId ProfileId ...
0
votes
1answer
54 views

PLINQO Stop generation on build class library

I've just started using PLINQO which looks really good so far. The only problem I have is whilst I'm doing custom amends on the entities I rebuild the contained class library and codesmith wants to ...
0
votes
1answer
203 views

Use the repository pattern when using PLINQO generated data?

I'm "upgrading" an MVC app. Previously, the DAL was a part of the Model, as a series of repositories (based on the entity name) using standard LINQ to SQL queries. Now, it's a separate project and is ...
0
votes
1answer
200 views

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 ...
0
votes
1answer
126 views

PLINQO Not Naming Entities Correctly

I have my CSP file set up to use TableNaming and EntityNaming as Singular: <TableNaming>Singular</TableNaming> <EntityNaming>Singular</EntityNaming> Yet the generated ...
0
votes
3answers
833 views

Plinqo 4 vs EF 4

Does anyone has experience with plinqo 4? what are the benefits vs EF 4?
0
votes
2answers
231 views

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 ...
0
votes
1answer
159 views

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; } ...
0
votes
1answer
213 views

How to catch BrokenRuleException in PLINQO?

I’ve created a custom rule by adding the static partial void AddSharedRules() { RuleManager.AddShared<Tag>( new CustomRule<String>( ...