With this keyword classes can be split into multiple definitions, but it compiles into one class.

learn more… | top users | synonyms

1
vote
0answers
25 views

Get a Partial Class to show using EntityDataSource

I have an entity object student, which has properties StudentID and StudentName. I have a partial class Student which uses a service to find that student's current school. An EntityDataSource fills up ...
0
votes
3answers
42 views

Entity Framework and partial method

in my Entity Framework model, I have that column [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public ...
0
votes
2answers
50 views

Can I pass a type argument to a *.xaml.cs class?

I want to pass a type parameter to my *.xaml.cs file. The C# code will look like this: public partial class Filter<T> : Window where T : IFilterableType { private readonly ...
2
votes
2answers
86 views

C# partial class and the get accessor

basing on the Entity Framework entities, I've created a partial class for one of them. The problem is, I want to add some code before the ContentValue is returned. But it does not work - ...
0
votes
0answers
124 views

Entity Framework: Extending partial class with interface without touching the EF-generated classes

My problem is similar to this post: Interface inheritance in Entity Framework Thus, I copy that example and modify it for my issue: public interface IBaseEntity { DateTime CreatedOn { get; set; ...
1
vote
3answers
85 views

partial class in C++

I want to avoid recompilation of everything that includes a public header file, just because something changed in the private part of a class definition. I'm investigating other options beside PIMPL. ...
1
vote
5answers
66 views

Enforce override method to base class

I have the following code: public partial class Root : ICustomInterface { public virtual void Display() { Console.WriteLine("Root"); Console.ReadLine(); } } public class ...
0
votes
2answers
129 views

Assembly name in Entity Framework and Partial Classes

Where in .edmx-file I can find the assembly name? Second, when I create my own partial class, how do I make it to appear in the same assembly?
0
votes
1answer
99 views

return values from a sealed Partial class

How can i return a value from a a function in a Sealed Partial class? I use the usercontrols like this. I have a usercontrol that calls another one that is a list. When i selected a row from this ...
1
vote
1answer
18 views

Why would some controls be public and others private?

I noticed this Windows-added code in a legacy *.cs file (prior to the advent of partial classes which evicted suchlike from the code files; specifically, this is in an old Windows CE project): ...
0
votes
1answer
100 views

Partial Class with Virtual Properties?

Is it possible to have virtual properties within a partial class? In my scenario, we have auto-generated classes that are used by our Micro-ORM and map exactly to our database tables. We often wish ...
2
votes
4answers
186 views

EF 5 Model First Partial Class Custom Constructer How To?

EF has generated for me some partial classes, each with a constructor, but it says not to touch them (example below), now if I make my own secondary partial class and I want to have a constructor that ...
1
vote
4answers
227 views

Partial classes in different namespace are not being recognized correctly

I have a partial that is split over two namespaces. The problem is that if I have an interface implemented on one of the partials, it is not recognized on the counterpart partial class. For example, I ...
0
votes
1answer
292 views

Adding interface to partial class in Entity Framework does not work

I am using a partial class (.NET 4.5) on my Entity Framework (v5) object. I added an interface to this partial class, but testing the EF object against this interface is false, but it should be ...
5
votes
4answers
109 views

When should I use the Partial keyword?

I was reading the MSDN article on the Partial keyword, and this part caught my eye: The partial keyword indicates that other parts of the class, struct, or interface can be defined in the ...
0
votes
1answer
200 views

Silverlight + Entity framework code first + DomainService + partial class

I have silverlight project with entityes thisis my table class public class OrderHeader : INotifyPropertyChanged { public string OrderId{get;set;} } And I have public class DataBaseContext : ...
0
votes
2answers
246 views

How to create calculated Fields in Partial Classes - WPF

I am trying to use the calculated columns to display in my grid. I have a partial class automatically generated by EF code generator with three properties: and i am trying to creating another partial ...
1
vote
2answers
150 views

Calculated Properties using Partial Classes(WPF)

I am trying to use the calculated columns to display in my grid. I have a partial class automatically generated by EF code generator with three properties: Here is my code generated by EF entity ...
0
votes
3answers
129 views

Partial class in MyClass.xaml not recognized by partial class in MyClass.xaml.cs

I have a class, partially defined in XAML and partially in code: The file ElementResource.xaml looks like this: <ResourceDictionary x:Class="TestElement.Views.ElementResource" ...
0
votes
5answers
86 views

What are the pros and cons of making a FAT class a partial one & splitting it into partial classes?

Recently I was considering a class that seems to become fat because of too many methods in it. A legacy code... That has many business logic-wise methods doing all types of CRUD on various ...
2
votes
1answer
65 views

Show all files contain same partial class

I have a partial class public partial class myClass defines in different files, e.g. myClass1.cs, myClass2.cs, etc. Is there a way for resharper or Visual studio built-in functionalities to find ...
0
votes
1answer
163 views

Instantiate partial class : page types in ASP.NET C#

Below is an example of what I am trying to accomplish regarding instantiating partial classes in an effort to make use of multiple classes (and their methods) from a single .aspx page. login.aspx: ...
0
votes
0answers
36 views

Key reference stored in partial class rather than database row

My 'Content' table gets referenced via a string in class derived by database field 'ID'. So it's reference is SITE-CONT-13 where 13 is the ID. public const string EntityReferencePrefix = ...
0
votes
1answer
321 views

member names cannot be the same as their enclosing type with partial class

I have defined a partial class with a property like this: public partial class Item{ public string this[string key] { get { if (Fields == null) return null; ...
3
votes
1answer
72 views

How to use a partial class to set an associations child property to false

I have a database that is changing a lot and i am constantly having to go into the data context designer and manually set a number of associations child properties to false. Each time i delete the ...
0
votes
1answer
35 views

Ruby on Rails: Concerning rendering partials inside paginated objects

I am really confused with how rendered paginated objects work. Take this for example: When I run <%= render :partial => 'feeds/share_item', collection: @share_items %> <%= ...
0
votes
2answers
159 views

reference wcf class in mvc for data annotation validation

I have a data contract class with data members in my WCF project and I want to reference them in my MVC project so I can apply data annotation validation to them I can use the class object in my MVC ...
1
vote
1answer
149 views

Partial class with portable class library

I have ported a class library to Portable Class Library, this Portable class library is shared between the server code, WPF applications and Silverlight, so far so good Before porting I had a partial ...
0
votes
2answers
297 views

access and set variables in a class from another class

i'v a shopping_cart.aspx.cs file & also have a class file spcart.cs, shopping_cart.aspx.cs public partial class Ui_ShoppingCart : System.Web.UI.Page { public int tax = 0; public int ...
1
vote
1answer
137 views

Partial classes in C# and web services

The project I'm on has many partial classes (meaning the keyword 'partial' has been used) but if they are actually partial to anything or not, I don't know (I wish the compiler would look for the ...
0
votes
1answer
129 views

Computed property on partial POCO class prevent linq query on DbContext

Using EF 5.0 (aka 4.3) I transformed one of my pocos (which I got from reverse engeniring my database), to be a partial class in order to extend it with a computed propertry wich is not relevant in my ...
0
votes
1answer
104 views

LINQ To SQL Partial Class Inherits Only One Class Without Its Relationship

I have a few LINQ to SQL entity tables which have relationships from one to another. Can anyone tell me a quick way to create a partial class that only inherits a class without its related entity ...
2
votes
1answer
390 views

Entity Framework - adding new constructors

I'm using EF4.3. It's my first project so I'm learning as I go along. There are instances where I need to implment additional constructors for entities. I create an additional partial class to do ...
2
votes
2answers
783 views

How to add an Initializer List constructor to STL vector

So what I want to do is extend the existing vector class in my program to allow me to say this, vector<string>* vec = new vector<string>(){"Value1","Value2"}; or vector<string>* ...
0
votes
2answers
370 views

Override the setter generated in the DBML file

I want to override a setter of a property in a partial class: Partial class: public partial class User { public string Name { set { // Do something } ...
2
votes
4answers
205 views

Create partial class for referenced assembly [duplicate]

Possible Duplicate: Is it possible to declare a partial class in two projects Say In my project solution, I have two project, ProjectA and ProjectB. ProjectA created: MyClassA Then ...
0
votes
1answer
131 views

Override Equals in partial class

I'm using EF 4.3. In order to extend the functionity of entity classes I create partial classes. This works fine in the main. The framework creates 1 to many navigation properties as hashsets and I ...
2
votes
2answers
279 views

How to invoke object in Partial Classes by initializing constructor of partial classes?

I'm working on ASP.NET MVC3 with C#. I got an error like below Type 'Test' already defines a member called 'Test' with the same parameter types My Code is: public partial class Test { Test() ...
0
votes
2answers
190 views

Why are classes generated by EF Power Tools not partial?

I'm using Reverse Engineered Code First code and see stubs like: public class User { public User() { this.Addresses = new List<Address>(); ... } public int ID { ...
0
votes
1answer
97 views

Tweaking POCOs generated by EF Reverse Engineer

I'm generating POCOs from my db via EF Power Tools and am ready to start tweaking and extending them. This Q/A gets me past the initial question (how to add partials) but I wonder if the provided ...
0
votes
1answer
443 views

Using Partial Classes in WPF

I have done quite a bit of research in the last few months and haven't been able to really find a good answer for my question yet: A little background info: I am new to WPF and was asked to create a ...
2
votes
1answer
115 views

Naked partial class

I'm trying to addsome Data Annotation using a Partial Class. As you can see I added a Test Property to my Partial Class so I can test if it really match with the other partials (as following this ...
0
votes
1answer
77 views

How to include a mapping as a base to a new mapping?

Is it possibly to use a mapping from a referenced assembly as a base for a new mapping? The reasoning behind this is there are general objects many applications use, thus they reference the ...
0
votes
3answers
125 views

What constraints govern while defining a Partial Class in c#

I searched over net but didn't find any useful information about Constraints/rules while defining a partial class, I mean can all class can be named Partial or some class cannot be? can static class ...
2
votes
1answer
208 views

Can you use partial classes to make two (equivalent) codebehind pages in VB

We are using T4 to generate our .aspx and .vb files. Everything works well - but we often have to customise behaviour on the pages. However, we also occasionally have to regenerate pages - which has ...
0
votes
0answers
160 views

ASP Bind to partial row property

So I've basically extended my dataset's data row CaseSearchRow, using a partial class, to include additional properties I would like to bind to in my asp page: Partial Class dsCaseSearch Partial ...
1
vote
3answers
124 views

Combine Partial Classes with Normal Classes

Is it possible to combine a normal class with a partial class like this: public class ClassA { public string PropertyA {get; set;} } public partial class ClassA { public string PropertyB ...
3
votes
1answer
284 views

FluentValidation validator not being called

I have a MVC 3 site but am using the non-MVC FluentValidation dll. I've created a validator class and in the constructor put all my RuleFors and then set an attribute on my model class thus ...
5
votes
2answers
517 views

Override ToString method in WCF service

This is my service generated class: public partial class MyClass : object, System.Runtime.Serialization.IExtensibleDataObject, ...
0
votes
2answers
173 views

Is using partial classes instead of Facade pattern an anti-pattern itself?

A few years ago, I was told to implement the business logic code in separated .cs files, although this files wrapped the same partial class. So one could call a method from business layer like this: ...

1 2 3 4 5