2012-06-13 12 views
12

Mi trovo a giocare con Entity Framework 4.3 e quindi sto utilizzando il Generatore DbContext per creare il contesto e le classi di entità.Come ottenere notifiche di modifica delle proprietà con EF 4.x DbContext generator

Con il modello generatore di codice EF 4 predefinito, le classi di entità implementano INotifyPropertyChanged e aggiungono anche i metodi parziali Changing e Changed nei setter di proprietà.

Quando utilizzo il generatore EF 4.x DbContext, come illustrato di seguito, le classi di entità sono molto più leggere e non includono alcun metodo per tenere traccia delle modifiche alle proprietà.

enter image description here

Ecco un esempio:

//------------------------------------------------------------------------------ 
// <auto-generated> 
// This code was generated from a template. 
// 
// Manual changes to this file may cause unexpected behavior in your application. 
// Manual changes to this file will be overwritten if the code is regenerated. 
// </auto-generated> 
//------------------------------------------------------------------------------ 

using System; 
using System.Collections.Generic; 

namespace SomeNamespace 
{ 
    public partial class SomeTable 
    { 
     public SomeTable() 
     { 
      this.Children = new HashSet<Child>(); 
     } 

     public long parent_id { get; set; } 
     public long id { get; set; } 
     public string filename { get; set; } 
     public byte[] file_blob { get; set; } 

     public virtual Parent Parent { get; set; } 
     public virtual ICollection<Child> Children { get; set; } 
    } 
} 

Devo mancare un pezzo importante del puzzle, ma le mie ricerche sono state infruttuose. Quindi la mia domanda è: come posso avere i tipi generati incluse le notifiche di modifica delle proprietà con EF 4.3?

Modifica

Sono pienamente d'accordo con la risposta di @derape; ma sono curioso di sapere perché avrei bisogno di cambiare il file quando il modello di generazione di codice predefinito EF 4 già ha i ganci. Intendo dire quando legare a un WPF DependencyProperty '? Senza INotifyPropertyChanged, le modifiche apportate da un comando a un gruppo di proprietà in un gruppo di oggetti non si rifletteranno nell'interfaccia utente. Cosa mi manca?

+0

Stai sbagliando. DBContext genera POCO leggeri perché si suppone che lo si utilizzi con un modello come MVVM in WPF o MVVMC in ASP.NET MVC. I tuoi modelli di vista dovrebbero gestire le notifiche di modifica delle proprietà o derivare da una classe base che lo fa. http://joshsmithonwpf.wordpress.com/2007/08/29/a-base-class-which-implements-inotifypropertychanged/ – Monstieur

risposta

0

Beh, dipende da cosa stai cercando di fare. Se si desidera implementare proprietà/metodi personalizzati, è possibile utilizzare la funzionalità delle classi parziali. Se vuoi cambiare, diciamo setter/getter delle tue proprietà nella tua finestra di progettazione dell'entità, dovresti adattare il file template del generatore dbContext. È un modello T4.

+0

Non capisco davvero la tua modifica. Puoi riformulare la tua spiegazione? – derape

+0

Inoltre, una parola di cautela con INotifyPropertyChanged all'interno di Entities. Se si alza l'evento propetychanged nel momento sbagliato, si otterrà un EntityMemberChanged o EntityComplexMemberChanged è stato chiamato senza prima chiamare EntityMemberChanging o EntityComplexMemberChanging. Penso che qualcosa abbia a che fare con i proxy. Non ho trovato un modo migliore per NotifyPropertyChanged, ma sarebbe bello se si potesse implementare INotifyPropertyChanged sull'entità stessa senza doversi preoccupare di EF che fa qualcosa che farà crashare il programma. – William

+0

Sto usando EF 4.4 se aiuta (almeno, questa è la versione sull'assieme a cui si fa riferimento), quindi è possibile che sia stato corretto con EF 5. – William

21

Recentemente mi sono imbattuto in questo problema, ho modificato il mio Entity.tt per attuare le seguenti modifiche, una patch veloce ma funziona benissimo ..

Aggiungere il seguente alla classe CodeStringGenerator

public string EntityClassOpening(EntityType entity) 
{ 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "{0} {1}partial class {2}{3} : {4}", 
     Accessibility.ForType(entity), 
     _code.SpaceAfter(_code.AbstractOption(entity)), 
     _code.Escape(entity), 
     _code.StringBefore(" : ", _typeMapper.GetTypeName(entity.BaseType)), 
     "INotifyPropertyChanged"); 
} 


public string Property(EdmProperty edmProperty) 
{ 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "{0} {1} {2} {{ {3}{6} {4}{5} }}", 
     Accessibility.ForProperty(edmProperty), 
     _typeMapper.GetTypeName(edmProperty.TypeUsage), 
     _code.Escape(edmProperty), 
     _code.SpaceAfter(Accessibility.ForGetter(edmProperty)), 
     _code.SpaceAfter(Accessibility.ForSetter(edmProperty)), 
     "set { _"+_code.Escape(edmProperty).ToLower()+" = value; OnPropertyChanged(\""+_code.Escape(edmProperty)+"\");}", 
     "get { return _"+_code.Escape(edmProperty).ToLower()+"; }"); 

} 
public string Private(EdmProperty edmProperty) { 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "{0} {1} _{2};", 
     "private", 
     _typeMapper.GetTypeName(edmProperty.TypeUsage), 
     _code.Escape(edmProperty).ToLower()); 

} 

Aggiungere il seguente al generatore

using System.ComponentModel; 
<#=codeStringGenerator.EntityClassOpening(entity)#> 
{ 
<# 
var propertiesWithDefaultValues = typeMapper.GetPropertiesWithDefaultValues(entity); 
var collectionNavigationProperties = typeMapper.GetCollectionNavigationProperties(entity); 
var complexProperties = typeMapper.GetComplexProperties(entity); 
#> 

public event PropertyChangedEventHandler PropertyChanged; 
protected virtual void OnPropertyChanged(string propertyName) 
{ 
     PropertyChangedEventHandler handler = PropertyChanged; 
     if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); 
} 

E un po 'nervosa, più in basso

foreach (var edmProperty in simpleProperties) 
{ 
#> 
<#=codeStringGenerator.Private(edmProperty)#> 
    <#=codeStringGenerator.Property(edmProperty)#> 
<# 
} 


foreach(var complexProperty in complexProperties) 
{ 
#> 
<#=codeStringGenerator.Private(complexProperty)#> 
    <#=codeStringGenerator.Property(complexProperty)#> 
<# 
} 
+0

Dovresti semplicemente continuare a usare ObjectContext se ti leghi a modelli di dati nel tuo applicazione. Le classi leggere di DBContext sono per quando si utilizza MVVM o MVVMC in cui i modelli di visualizzazione implementano notifiche modificate delle proprietà. – Monstieur

+0

Grazie mille. Ho dovuto aggiungere il gestore di eventi modificati proprietà subito dopo "<# = codeStringGenerator.EntityClassOpening (entity) #> {" per farlo funzionare, ma per il resto molto bello. –

1

La soluzione di Anders sopra funziona, ma ci sono un paio di trucchi che ho trovato durante il processo:

Nel passaggio 1 dove dice "Aggiungi quanto segue alla CodeStringGenerator class ", solo la funzione" public string Private (... "può essere aggiunta perché gli altri due esistono già. Quindi, devi trovarli e sostituire queste due funzioni non aggiungerli, altrimenti otterrai errori. Per trovare esattamente dove devi metterli, fai una ricerca per "public class CodeStringGenerator" e cerca le funzioni sottostanti.

Nel passaggio 2 "Aggiungi il seguente al generatore", è sufficiente aggiungere la riga "using System.ComponentModel" e le righe da (e incluso) "evento pubblico PropertyChangedEventHandler ...". Di nuovo, le altre linee esistono già, le troverai vicino alla parte superiore del file .tt.

Nel passaggio 3 "E un po 'più in basso", anche questi cicli "foreach" esistono già, quindi devono essere sostituiti e non aggiunti. In definitiva, a ogni ciclo foreach viene aggiunta una sola riga, "< # = codeStringGenerator.Private (edmProperty) #>" e "< # = codeStringGenerator.Private (complexProperty) #>" rispettivamente in ciascun ciclo.

Inoltre, non sostituire l'anello sbagliato, ci sono due ulteriori loop di cui sopra quelle che ti servono per sostituire quale sia il ciclo attraverso gli stessi oggetti ... assicuratevi di sostituire quelle corrette :-)

Ho pensato di menzionarlo perché come novizio MVVM/EF (usato per usare NHibernate) ho dovuto apportare queste modifiche perché funzionasse.

-1

È necessario continuare a utilizzare ObjectContext se si desidera ricevere notifiche di modifica delle proprietà quando si esegue il binding diretto alle classi del modello di dati.

Le classi DBContext leggere sono per modelli come MVVM o MVVMC in cui il modello di visualizzazione implementa le notifiche di modifica delle proprietà e l'interfaccia utente si lega solo alle proprietà del modello di visualizzazione. Non ci si lega mai alle classi del modello dati in questi modelli.

+3

Onestamente, dovrei chiedermi quale sia lo scopo dell'uso del codice generato (come EF Model First) se poi si passano le copie di codice di ogni entità che crei per l'utilizzo nell'interfaccia utente. Secondo il mio modo di pensare, forniamo modelli per rendere la nostra vita più facile come sviluppatori. Sto lavorando a un progetto nel momento in cui le entità di business (generate) gestiscono INotifyPropertyChanged e ci offre così tanti vantaggi che sono pronto a rischiare il disprezzo dei puristi che dicono che dovremmo fare una copia profonda del modello nel ViewModel. – naskew

14

ho creato una variante Anders risposta con le seguenti differenze:

  • Meno modifiche al file di Entity.tt
  • Utilizzo di una classe di base per l'attuazione INotifyPropertyChanged (utile per l'introduzione di altre funzionalità comuni)
  • Cleaner schema di codice nelle classi del modello generate

Così i miei passi sono:

creare una classe base per le vostre classi del modello per estendere:

public abstract class BaseModel : INotifyPropertyChanged 
{ 
    protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] String propertyName = null) 
    { 
     if (object.Equals(storage, value)) return false; 

     storage = value; 
     this.OnPropertyChanged(propertyName); 
     return true; 
    } 

    public event PropertyChangedEventHandler PropertyChanged; 
    protected virtual void OnPropertyChanged(string propertyName) 
    { 
     PropertyChangedEventHandler handler = PropertyChanged; 
     if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); 
    } 
} 

Grazie Juan Pable Gomez per il miglioramento suggerito! Mi piace il tuo miglioramento, anche se gli altri recensori non hanno :)

aggiornare il metodo EntityClassOpening nel file Entity.tt al seguente:

public string EntityClassOpening(EntityType entity) 
{ 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "{0} {1}partial class {2}{3}", 
     Accessibility.ForType(entity), 
     _code.SpaceAfter(_code.AbstractOption(entity)), 
     _code.Escape(entity), 
     _code.StringBefore(" : ", string.IsNullOrEmpty(_typeMapper.GetTypeName(entity.BaseType)) ? "BaseModel" : _typeMapper.GetTypeName(entity.BaseType))); 
} 

trovare la linea:

<#=Accessibility.ForType(complex)#> partial class <#=code.Escape(complex)#> 

e aggiornarlo per:

<#=Accessibility.ForType(complex)#> partial class <#=code.Escape(complex)#> : BaseModel 

Grazie Manolo!

Aggiornare il metodo di proprietà nell'entità.file di tt per quanto segue:

public string Property(EdmProperty edmProperty) 
{ 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "private {1} {3};\r\n"+ 
     "\t{0} {1} {2} \r\n" + 
     "\t{{ \r\n" + 
      "\t\t{4}get {{ return {3}; }} \r\n" + 
      "\t\t{5}set {{ SetProperty(ref {3}, value); }} \r\n" + 
     "\t}}\r\n", 
     Accessibility.ForProperty(edmProperty), 
     _typeMapper.GetTypeName(edmProperty.TypeUsage), 
     _code.Escape(edmProperty), 
     "_" + Char.ToLowerInvariant(_code.Escape(edmProperty)[0]) + _code.Escape(edmProperty).Substring(1), 
     _code.SpaceAfter(Accessibility.ForGetter(edmProperty)), 
     _code.SpaceAfter(Accessibility.ForSetter(edmProperty))); 
} 

Il gioco è fatto! Ora le classi del modello sarà simile:

public partial class User : BaseModel 
{ 
    private int _id; 
    public int Id 
    { 
     get { return _id; } 
     set { SetProperty(ref _id,value);} 
    } 

    private string _name; 
    public string Name 
    { 
     get { return _name; } 
     set { SetProperty(ref _name , value); } 
    } 

Non esitate a (cercare di) modificare questa soluzione se è possibile vedere altri miglioramenti.

+3

devi anche trovare la seguente riga: '<# = Accessibility.ForType (complex) #> partial class <# = code.Escape (complex) #>' e aggiungi ': BaseModel' – Manolo

+1

WOW! A lavoro è piaciuta una magia ... Grazie a Ton !! –

+1

esattamente quello di cui ho bisogno, funziona con EF 6 – sgissinger

5

Stavo cercando di modificare soluzione Brian Hinchey Ma EDIT è stato respinto. Quindi pubblico qui i miei add-in.

Questa soluzione genera meno codice per ciascun setter di proprietà, sfruttando l'attributo CallerMemberName.

NOTA: Sto usando EF 6.1 e funziona piuttosto bene.

BaseClass ora sembra così.

public abstract class BaseModel : INotifyPropertyChanged 
{ 
    public event PropertyChangedEventHandler PropertyChanged; 

    protected bool SetProperty<T>(ref T storage, T value, [CallerMemberName] String propertyName = null) 
    { 
     if (object.Equals(storage, value)) return false; 

     storage = value; 
     this.OnPropertyChanged(propertyName); 
     return true; 
    } 


    protected void OnPropertyChanged([CallerMemberName] string propertyName = null) 
    { 
     var eventHandler = this.PropertyChanged; 
     if (eventHandler != null) 
     { 
      eventHandler(this, new PropertyChangedEventArgs(propertyName)); 
     } 
    } 
} 

aggiornare il metodo EntityClassOpening nel Entity.tt rimane esattamente come Brian uno: è la mia ultima modifica

<#=Accessibility.ForType(complex)#> partial class <#=code.Escape(complex)#> 
FOR 
<#=Accessibility.ForType(complex)#> partial class <#=code.Escape(complex)#> : BaseModel 

E:

public string EntityClassOpening(EntityType entity) 
{ 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "{0} {1}partial class {2}{3}", 
     Accessibility.ForType(entity), 
     _code.SpaceAfter(_code.AbstractOption(entity)), 
     _code.Escape(entity), 
     _code.StringBefore(" : ", string.IsNullOrEmpty(_typeMapper.GetTypeName(entity.BaseType)) ? "BaseModel" : _typeMapper.GetTypeName(entity.BaseType))); 
} 

Come Bryan dicono ricordiamo cambiamento per il metodo

public string Property(EdmProperty edmProperty) 
{ 
    return string.Format(
     CultureInfo.InvariantCulture, 
     "private {1} {3};\r\n"+ 
     "\t{0} {1} {2} \r\n" + 
     "\t{{ \r\n" + 
      "\t\t{4}get {{ return {3}; }} \r\n" + 
      "\t\t{5}set {{ SetProperty(ref {3}, value); }} \r\n" + 
     "\t}}\r\n", 
     Accessibility.ForProperty(edmProperty), 
     _typeMapper.GetTypeName(edmProperty.TypeUsage), 
     _code.Escape(edmProperty), 
     "_" + Char.ToLowerInvariant(_code.Escape(edmProperty)[0]) + _code.Escape(edmProperty).Substring(1), 
     _code.SpaceAfter(Accessibility.ForGetter(edmProperty)), 
     _code.SpaceAfter(Accessibility.ForSetter(edmProperty))); 
} 

Ed ecco finalmente la classe si presenta come:

public partial class User : BaseModel 
{ 
    private int _id; 
    public int Id 
    { 
     get { return _id; } 
     set { SetProperty(ref _id , value);} 
    } 

    private string _name; 
    public string Name 
    { 
     get { return _name; } 
     set { SetProperty(ref _name , value);} 
    } 
} 

Questo rende il clases generati più luce.

Recentemente stavo lavorando con la libreria PropertyChanged.Fody ma per ragioni sconosciute (almeno per me) non funziona correttamente alcune volte. Questo è il motivo per cui sono qui. Questa soluzione (la soluzione di Bryan) funziona sempre.

+3

Grazie per il miglioramento suggerito Juan.Ho modificato la mia risposta per includere il tuo suggerimento. –

0

Ho creato quanto segue per l'utilizzo con EF 6.1.2 ma il test è stato abbastanza limitato, quindi l'utilizzo è a vostro rischio.

<#@ template language="C#" debug="false" hostspecific="true"#> 
<#@ include file="EF6.Utility.CS.ttinclude"#><#@ 
output extension=".cs"#><# 

const string inputFile = @"Model.edmx"; 
var textTransform = DynamicTextTransformation.Create(this); 
var code = new CodeGenerationTools(this); 
var ef = new MetadataTools(this); 
var typeMapper = new TypeMapper(code, ef, textTransform.Errors); 
var fileManager = EntityFrameworkTemplateFileManager.Create(this); 
var itemCollection = new EdmMetadataLoader(textTransform.Host, textTransform.Errors).CreateEdmItemCollection(inputFile); 
var codeStringGenerator = new CodeStringGenerator(code, typeMapper, ef); 

if (!typeMapper.VerifyCaseInsensitiveTypeUniqueness(typeMapper.GetAllGlobalItems(itemCollection), inputFile)) 
{ 
    return string.Empty; 
} 

WriteHeader(codeStringGenerator, fileManager); 

foreach (var entity in typeMapper.GetItemsToGenerate<EntityType>(itemCollection)) 
{ 
    fileManager.StartNewFile(entity.Name + ".cs"); 
    BeginNamespace(code); 
#> 
<#=codeStringGenerator.UsingDirectives(inHeader: false)#> 
<#=codeStringGenerator.EntityClassOpening(entity)#> 
{ 
<# 
    var propertiesWithDefaultValues = typeMapper.GetPropertiesWithDefaultValues(entity); 
    var collectionNavigationProperties = typeMapper.GetCollectionNavigationProperties(entity); 
    var complexProperties = typeMapper.GetComplexProperties(entity); 

    if (propertiesWithDefaultValues.Any() || collectionNavigationProperties.Any() || complexProperties.Any()) 
    { 
#> 
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] 
    public <#=code.Escape(entity)#>() 
    { 
<# 
     foreach (var edmProperty in propertiesWithDefaultValues) 
     { 
#> 
     this.<#=code.Escape(edmProperty)#> = <#=typeMapper.CreateLiteral(edmProperty.DefaultValue)#>; 
<# 
     } 

     foreach (var navigationProperty in collectionNavigationProperties) 
     { 
#> 
     this.<#=code.Escape(navigationProperty)#> = new HashSet<<#=typeMapper.GetTypeName(navigationProperty.ToEndMember.GetEntityType())#>>(); 
<# 
     } 

     foreach (var complexProperty in complexProperties) 
     { 
#> 
     this.<#=code.Escape(complexProperty)#> = new <#=typeMapper.GetTypeName(complexProperty.TypeUsage)#>(); 
<# 
     } 
#> 
    } 

<# 
    } 

    var simpleProperties = typeMapper.GetSimpleProperties(entity); 
    if (simpleProperties.Any()) 
    { 
     foreach (var edmProperty in simpleProperties) 
     { 
#> 
    <#=codeStringGenerator.Property(edmProperty)#> 
<# 
     } 
    } 

    if (complexProperties.Any()) 
    { 
#> 

<# 
     foreach(var complexProperty in complexProperties) 
     { 
#> 
    <#=codeStringGenerator.Property(complexProperty)#> 
<# 
     } 
    } 

    var navigationProperties = typeMapper.GetNavigationProperties(entity); 
    if (navigationProperties.Any()) 
    { 
#> 

<# 
     foreach (var navigationProperty in navigationProperties) 
     { 
      if (navigationProperty.ToEndMember.RelationshipMultiplicity == RelationshipMultiplicity.Many) 
      { 
#> 
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] 
<# 
      } 
#> 
    <#=codeStringGenerator.NavigationProperty(navigationProperty)#> 
<# 
     } 
    } 
#> 

    #region INotifyPropertyChanged Members 
    public event PropertyChangedEventHandler PropertyChanged; 

    protected void OnPropertyChanged(string propertyName) 
    { 
     OnPropertyChanged(new PropertyChangedEventArgs(propertyName)); 
    } 

    protected virtual void OnPropertyChanged(PropertyChangedEventArgs e) 
    { 
     WhenPropertyChanged(e); 

     if (PropertyChanged != null) 
     { 
      PropertyChanged(this, e); 
     } 
    } 

    partial void WhenPropertyChanged(PropertyChangedEventArgs e); 
    #endregion 
} 
<# 
    EndNamespace(code); 
} 

foreach (var complex in typeMapper.GetItemsToGenerate<ComplexType>(itemCollection)) 
{ 
    fileManager.StartNewFile(complex.Name + ".cs"); 
    BeginNamespace(code); 
#> 
<#=codeStringGenerator.UsingDirectives(inHeader: false, includeCollections: false)#> 
<#=Accessibility.ForType(complex)#> partial class <#=code.Escape(complex)#> 
{ 
<# 
    var complexProperties = typeMapper.GetComplexProperties(complex); 
    var propertiesWithDefaultValues = typeMapper.GetPropertiesWithDefaultValues(complex); 

    if (propertiesWithDefaultValues.Any() || complexProperties.Any()) 
    { 
#> 
    public <#=code.Escape(complex)#>() 
    { 
<# 
     foreach (var edmProperty in propertiesWithDefaultValues) 
     { 
#> 
     this.<#=code.Escape(edmProperty)#> = <#=typeMapper.CreateLiteral(edmProperty.DefaultValue)#>; 
<# 
     } 

     foreach (var complexProperty in complexProperties) 
     { 
#> 
     this.<#=code.Escape(complexProperty)#> = new <#=typeMapper.GetTypeName(complexProperty.TypeUsage)#>(); 
<# 
     } 
#> 
    } 

<# 
    } 

    var simpleProperties = typeMapper.GetSimpleProperties(complex); 
    if (simpleProperties.Any()) 
    { 
     foreach(var edmProperty in simpleProperties) 
     { 
#> 
    <#=codeStringGenerator.Property(edmProperty)#> 
<# 
     } 
    } 

    if (complexProperties.Any()) 
    { 
#> 

<# 
     foreach(var edmProperty in complexProperties) 
     { 
#> 
    <#=codeStringGenerator.Property(edmProperty)#> 
<# 
     } 
    } 
#> 
} 
<# 
    EndNamespace(code); 
} 

foreach (var enumType in typeMapper.GetEnumItemsToGenerate(itemCollection)) 
{ 
    fileManager.StartNewFile(enumType.Name + ".cs"); 
    BeginNamespace(code); 
#> 
<#=codeStringGenerator.UsingDirectives(inHeader: false, includeCollections: false)#> 
<# 
    if (typeMapper.EnumIsFlags(enumType)) 
    { 
#> 
[Flags] 
<# 
    } 
#> 
<#=codeStringGenerator.EnumOpening(enumType)#> 
{ 
<# 
    var foundOne = false; 

    foreach (MetadataItem member in typeMapper.GetEnumMembers(enumType)) 
    { 
     foundOne = true; 
#> 
    <#=code.Escape(typeMapper.GetEnumMemberName(member))#> = <#=typeMapper.GetEnumMemberValue(member)#>, 
<# 
    } 

    if (foundOne) 
    { 
     this.GenerationEnvironment.Remove(this.GenerationEnvironment.Length - 3, 1); 
    } 
#> 
} 
<# 
    EndNamespace(code); 
} 

fileManager.Process(); 

#> 
<#+ 

public void WriteHeader(CodeStringGenerator codeStringGenerator, EntityFrameworkTemplateFileManager fileManager) 
{ 
    fileManager.StartHeader(); 
#> 
//------------------------------------------------------------------------------ 
// <auto-generated> 
// <#=CodeGenerationTools.GetResourceString("Template_GeneratedCodeCommentLine1")#> 
// 
// <#=CodeGenerationTools.GetResourceString("Template_GeneratedCodeCommentLine2")#> 
// <#=CodeGenerationTools.GetResourceString("Template_GeneratedCodeCommentLine3")#> 
// </auto-generated> 
//------------------------------------------------------------------------------ 
<#=codeStringGenerator.UsingDirectives(inHeader: true)#> 
<#+ 
    fileManager.EndBlock(); 
} 

public void BeginNamespace(CodeGenerationTools code) 
{ 
    var codeNamespace = code.VsNamespaceSuggestion(); 
    if (!String.IsNullOrEmpty(codeNamespace)) 
    { 
#> 
namespace <#=code.EscapeNamespace(codeNamespace)#> 
{ 
<#+ 
     PushIndent(" "); 
    } 
} 

public void EndNamespace(CodeGenerationTools code) 
{ 
    if (!String.IsNullOrEmpty(code.VsNamespaceSuggestion())) 
    { 
     PopIndent(); 
#> 
} 
<#+ 
    } 
} 

public const string TemplateId = "CSharp_DbContext_Types_EF6"; 

public class CodeStringGenerator 
{ 
    private readonly CodeGenerationTools _code; 
    private readonly TypeMapper _typeMapper; 
    private readonly MetadataTools _ef; 

    public CodeStringGenerator(CodeGenerationTools code, TypeMapper typeMapper, MetadataTools ef) 
    { 
     ArgumentNotNull(code, "code"); 
     ArgumentNotNull(typeMapper, "typeMapper"); 
     ArgumentNotNull(ef, "ef"); 

     _code = code; 
     _typeMapper = typeMapper; 
     _ef = ef; 
    } 

    public string Property(EdmProperty edmProperty) 
    { 
     StringBuilder propertyCode = new StringBuilder(); 
     propertyCode.AppendFormat("private {0} _{1};",_typeMapper.GetTypeName(edmProperty.TypeUsage), _code.Escape(edmProperty)); 
     propertyCode.AppendFormat(
      CultureInfo.InvariantCulture, 
      "{0} {1} {2} {{ {3}get{{ return _{2};}} {4}set{{if(_{2} != value){{_{2} = value; OnPropertyChanged(\"{2}\");}}}}}}", 
      Accessibility.ForProperty(edmProperty), 
      _typeMapper.GetTypeName(edmProperty.TypeUsage), 
      _code.Escape(edmProperty), 
      _code.SpaceAfter(Accessibility.ForGetter(edmProperty)), 
      _code.SpaceAfter(Accessibility.ForSetter(edmProperty))); 

     return propertyCode.ToString(); 
    } 

    public string NavigationProperty(NavigationProperty navProp) 
    { 
     var endType = _typeMapper.GetTypeName(navProp.ToEndMember.GetEntityType()); 
     return string.Format(
      CultureInfo.InvariantCulture, 
      "{0} {1} {2} {{ {3}get; {4}set; }}", 
      AccessibilityAndVirtual(Accessibility.ForNavigationProperty(navProp)), 
      navProp.ToEndMember.RelationshipMultiplicity == RelationshipMultiplicity.Many ? ("ICollection<" + endType + ">") : endType, 
      _code.Escape(navProp), 
      _code.SpaceAfter(Accessibility.ForGetter(navProp)), 
      _code.SpaceAfter(Accessibility.ForSetter(navProp))); 
    } 

    public string AccessibilityAndVirtual(string accessibility) 
    { 
     return accessibility + (accessibility != "private" ? " virtual" : ""); 
    } 

    public string EntityClassOpening(EntityType entity) 
    { 
     return string.Format(
      CultureInfo.InvariantCulture, 
      "{0} {1}partial class {2} : INotifyPropertyChanged{3}", 
      Accessibility.ForType(entity), 
      _code.SpaceAfter(_code.AbstractOption(entity)), 
      _code.Escape(entity), 
      _code.StringBefore(", ", _typeMapper.GetTypeName(entity.BaseType))); 
    } 

    public string EnumOpening(SimpleType enumType) 
    { 
     return string.Format(
      CultureInfo.InvariantCulture, 
      "{0} enum {1} : {2}", 
      Accessibility.ForType(enumType), 
      _code.Escape(enumType), 
      _code.Escape(_typeMapper.UnderlyingClrType(enumType))); 
     } 

    public void WriteFunctionParameters(EdmFunction edmFunction, Action<string, string, string, string> writeParameter) 
    { 
     var parameters = FunctionImportParameter.Create(edmFunction.Parameters, _code, _ef); 
     foreach (var parameter in parameters.Where(p => p.NeedsLocalVariable)) 
     { 
      var isNotNull = parameter.IsNullableOfT ? parameter.FunctionParameterName + ".HasValue" : parameter.FunctionParameterName + " != null"; 
      var notNullInit = "new ObjectParameter(\"" + parameter.EsqlParameterName + "\", " + parameter.FunctionParameterName + ")"; 
      var nullInit = "new ObjectParameter(\"" + parameter.EsqlParameterName + "\", typeof(" + TypeMapper.FixNamespaces(parameter.RawClrTypeName) + "))"; 
      writeParameter(parameter.LocalVariableName, isNotNull, notNullInit, nullInit); 
     } 
    } 

    public string ComposableFunctionMethod(EdmFunction edmFunction, string modelNamespace) 
    { 
     var parameters = _typeMapper.GetParameters(edmFunction); 

     return string.Format(
      CultureInfo.InvariantCulture, 
      "{0} IQueryable<{1}> {2}({3})", 
      AccessibilityAndVirtual(Accessibility.ForMethod(edmFunction)), 
      _typeMapper.GetTypeName(_typeMapper.GetReturnType(edmFunction), modelNamespace), 
      _code.Escape(edmFunction), 
      string.Join(", ", parameters.Select(p => TypeMapper.FixNamespaces(p.FunctionParameterType) + " " + p.FunctionParameterName).ToArray())); 
    } 

    public string ComposableCreateQuery(EdmFunction edmFunction, string modelNamespace) 
    { 
     var parameters = _typeMapper.GetParameters(edmFunction); 

     return string.Format(
      CultureInfo.InvariantCulture, 
      "return ((IObjectContextAdapter)this).ObjectContext.CreateQuery<{0}>(\"[{1}].[{2}]({3})\"{4});", 
      _typeMapper.GetTypeName(_typeMapper.GetReturnType(edmFunction), modelNamespace), 
      edmFunction.NamespaceName, 
      edmFunction.Name, 
      string.Join(", ", parameters.Select(p => "@" + p.EsqlParameterName).ToArray()), 
      _code.StringBefore(", ", string.Join(", ", parameters.Select(p => p.ExecuteParameterName).ToArray()))); 
    } 

    public string FunctionMethod(EdmFunction edmFunction, string modelNamespace, bool includeMergeOption) 
    { 
     var parameters = _typeMapper.GetParameters(edmFunction); 
     var returnType = _typeMapper.GetReturnType(edmFunction); 

     var paramList = String.Join(", ", parameters.Select(p => TypeMapper.FixNamespaces(p.FunctionParameterType) + " " + p.FunctionParameterName).ToArray()); 
     if (includeMergeOption) 
     { 
      paramList = _code.StringAfter(paramList, ", ") + "MergeOption mergeOption"; 
     } 

     return string.Format(
      CultureInfo.InvariantCulture, 
      "{0} {1} {2}({3})", 
      AccessibilityAndVirtual(Accessibility.ForMethod(edmFunction)), 
      returnType == null ? "int" : "ObjectResult<" + _typeMapper.GetTypeName(returnType, modelNamespace) + ">", 
      _code.Escape(edmFunction), 
      paramList); 
    } 

    public string ExecuteFunction(EdmFunction edmFunction, string modelNamespace, bool includeMergeOption) 
    { 
     var parameters = _typeMapper.GetParameters(edmFunction); 
     var returnType = _typeMapper.GetReturnType(edmFunction); 

     var callParams = _code.StringBefore(", ", String.Join(", ", parameters.Select(p => p.ExecuteParameterName).ToArray())); 
     if (includeMergeOption) 
     { 
      callParams = ", mergeOption" + callParams; 
     } 

     return string.Format(
      CultureInfo.InvariantCulture, 
      "return ((IObjectContextAdapter)this).ObjectContext.ExecuteFunction{0}(\"{1}\"{2});", 
      returnType == null ? "" : "<" + _typeMapper.GetTypeName(returnType, modelNamespace) + ">", 
      edmFunction.Name, 
      callParams); 
    } 

    public string DbSet(EntitySet entitySet) 
    { 
     return string.Format(
      CultureInfo.InvariantCulture, 
      "{0} virtual DbSet<{1}> {2} {{ get; set; }}", 
      Accessibility.ForReadOnlyProperty(entitySet), 
      _typeMapper.GetTypeName(entitySet.ElementType), 
      _code.Escape(entitySet)); 
    } 

    public string UsingDirectives(bool inHeader, bool includeCollections = true) 
    { 
     return inHeader == string.IsNullOrEmpty(_code.VsNamespaceSuggestion()) 
      ? string.Format(
       CultureInfo.InvariantCulture, 
       "{0}using System;" + Environment.NewLine + 
       "using System.ComponentModel;{1}" + 
       "{2}", 
       inHeader ? Environment.NewLine : "", 
       includeCollections ? (Environment.NewLine + "using System.Collections.Generic;") : "", 
       inHeader ? "" : Environment.NewLine) 
      : ""; 
    } 
} 

public class TypeMapper 
{ 
    private const string ExternalTypeNameAttributeName = @"http://schemas.microsoft.com/ado/2006/04/codegeneration:ExternalTypeName"; 

    private readonly System.Collections.IList _errors; 
    private readonly CodeGenerationTools _code; 
    private readonly MetadataTools _ef; 

    public TypeMapper(CodeGenerationTools code, MetadataTools ef, System.Collections.IList errors) 
    { 
     ArgumentNotNull(code, "code"); 
     ArgumentNotNull(ef, "ef"); 
     ArgumentNotNull(errors, "errors"); 

     _code = code; 
     _ef = ef; 
     _errors = errors; 
    } 

    public static string FixNamespaces(string typeName) 
    { 
     return typeName.Replace("System.Data.Spatial.", "System.Data.Entity.Spatial."); 
    } 

    public string GetTypeName(TypeUsage typeUsage) 
    { 
     return typeUsage == null ? null : GetTypeName(typeUsage.EdmType, _ef.IsNullable(typeUsage), modelNamespace: null); 
    } 

    public string GetTypeName(EdmType edmType) 
    { 
     return GetTypeName(edmType, isNullable: null, modelNamespace: null); 
    } 

    public string GetTypeName(TypeUsage typeUsage, string modelNamespace) 
    { 
     return typeUsage == null ? null : GetTypeName(typeUsage.EdmType, _ef.IsNullable(typeUsage), modelNamespace); 
    } 

    public string GetTypeName(EdmType edmType, string modelNamespace) 
    { 
     return GetTypeName(edmType, isNullable: null, modelNamespace: modelNamespace); 
    } 

    public string GetTypeName(EdmType edmType, bool? isNullable, string modelNamespace) 
    { 
     if (edmType == null) 
     { 
      return null; 
     } 

     var collectionType = edmType as CollectionType; 
     if (collectionType != null) 
     { 
      return String.Format(CultureInfo.InvariantCulture, "ICollection<{0}>", GetTypeName(collectionType.TypeUsage, modelNamespace)); 
     } 

     var typeName = _code.Escape(edmType.MetadataProperties 
           .Where(p => p.Name == ExternalTypeNameAttributeName) 
           .Select(p => (string)p.Value) 
           .FirstOrDefault()) 
      ?? (modelNamespace != null && edmType.NamespaceName != modelNamespace ? 
       _code.CreateFullName(_code.EscapeNamespace(edmType.NamespaceName), _code.Escape(edmType)) : 
       _code.Escape(edmType)); 

     if (edmType is StructuralType) 
     { 
      return typeName; 
     } 

     if (edmType is SimpleType) 
     { 
      var clrType = UnderlyingClrType(edmType); 
      if (!IsEnumType(edmType)) 
      { 
       typeName = _code.Escape(clrType); 
      } 

      typeName = FixNamespaces(typeName); 

      return clrType.IsValueType && isNullable == true ? 
       String.Format(CultureInfo.InvariantCulture, "Nullable<{0}>", typeName) : 
       typeName; 
     } 

     throw new ArgumentException("edmType"); 
    } 

    public Type UnderlyingClrType(EdmType edmType) 
    { 
     ArgumentNotNull(edmType, "edmType"); 

     var primitiveType = edmType as PrimitiveType; 
     if (primitiveType != null) 
     { 
      return primitiveType.ClrEquivalentType; 
     } 

     if (IsEnumType(edmType)) 
     { 
      return GetEnumUnderlyingType(edmType).ClrEquivalentType; 
     } 

     return typeof(object); 
    } 

    public object GetEnumMemberValue(MetadataItem enumMember) 
    { 
     ArgumentNotNull(enumMember, "enumMember"); 

     var valueProperty = enumMember.GetType().GetProperty("Value"); 
     return valueProperty == null ? null : valueProperty.GetValue(enumMember, null); 
    } 

    public string GetEnumMemberName(MetadataItem enumMember) 
    { 
     ArgumentNotNull(enumMember, "enumMember"); 

     var nameProperty = enumMember.GetType().GetProperty("Name"); 
     return nameProperty == null ? null : (string)nameProperty.GetValue(enumMember, null); 
    } 

    public System.Collections.IEnumerable GetEnumMembers(EdmType enumType) 
    { 
     ArgumentNotNull(enumType, "enumType"); 

     var membersProperty = enumType.GetType().GetProperty("Members"); 
     return membersProperty != null 
      ? (System.Collections.IEnumerable)membersProperty.GetValue(enumType, null) 
      : Enumerable.Empty<MetadataItem>(); 
    } 

    public bool EnumIsFlags(EdmType enumType) 
    { 
     ArgumentNotNull(enumType, "enumType"); 

     var isFlagsProperty = enumType.GetType().GetProperty("IsFlags"); 
     return isFlagsProperty != null && (bool)isFlagsProperty.GetValue(enumType, null); 
    } 

    public bool IsEnumType(GlobalItem edmType) 
    { 
     ArgumentNotNull(edmType, "edmType"); 

     return edmType.GetType().Name == "EnumType"; 
    } 

    public PrimitiveType GetEnumUnderlyingType(EdmType enumType) 
    { 
     ArgumentNotNull(enumType, "enumType"); 

     return (PrimitiveType)enumType.GetType().GetProperty("UnderlyingType").GetValue(enumType, null); 
    } 

    public string CreateLiteral(object value) 
    { 
     if (value == null || value.GetType() != typeof(TimeSpan)) 
     { 
      return _code.CreateLiteral(value); 
     } 

     return string.Format(CultureInfo.InvariantCulture, "new TimeSpan({0})", ((TimeSpan)value).Ticks); 
    } 

    public bool VerifyCaseInsensitiveTypeUniqueness(IEnumerable<string> types, string sourceFile) 
    { 
     ArgumentNotNull(types, "types"); 
     ArgumentNotNull(sourceFile, "sourceFile"); 

     var hash = new HashSet<string>(StringComparer.InvariantCultureIgnoreCase); 
     if (types.Any(item => !hash.Add(item))) 
     { 
      _errors.Add(
       new CompilerError(sourceFile, -1, -1, "6023", 
        String.Format(CultureInfo.CurrentCulture, CodeGenerationTools.GetResourceString("Template_CaseInsensitiveTypeConflict")))); 
      return false; 
     } 
     return true; 
    } 

    public IEnumerable<SimpleType> GetEnumItemsToGenerate(IEnumerable<GlobalItem> itemCollection) 
    { 
     return GetItemsToGenerate<SimpleType>(itemCollection) 
      .Where(e => IsEnumType(e)); 
    } 

    public IEnumerable<T> GetItemsToGenerate<T>(IEnumerable<GlobalItem> itemCollection) where T: EdmType 
    { 
     return itemCollection 
      .OfType<T>() 
      .Where(i => !i.MetadataProperties.Any(p => p.Name == ExternalTypeNameAttributeName)) 
      .OrderBy(i => i.Name); 
    } 

    public IEnumerable<string> GetAllGlobalItems(IEnumerable<GlobalItem> itemCollection) 
    { 
     return itemCollection 
      .Where(i => i is EntityType || i is ComplexType || i is EntityContainer || IsEnumType(i)) 
      .Select(g => GetGlobalItemName(g)); 
    } 

    public string GetGlobalItemName(GlobalItem item) 
    { 
     if (item is EdmType) 
     { 
      return ((EdmType)item).Name; 
     } 
     else 
     { 
      return ((EntityContainer)item).Name; 
     } 
    } 

    public IEnumerable<EdmProperty> GetSimpleProperties(EntityType type) 
    { 
     return type.Properties.Where(p => p.TypeUsage.EdmType is SimpleType && p.DeclaringType == type); 
    } 

    public IEnumerable<EdmProperty> GetSimpleProperties(ComplexType type) 
    { 
     return type.Properties.Where(p => p.TypeUsage.EdmType is SimpleType && p.DeclaringType == type); 
    } 

    public IEnumerable<EdmProperty> GetComplexProperties(EntityType type) 
    { 
     return type.Properties.Where(p => p.TypeUsage.EdmType is ComplexType && p.DeclaringType == type); 
    } 

    public IEnumerable<EdmProperty> GetComplexProperties(ComplexType type) 
    { 
     return type.Properties.Where(p => p.TypeUsage.EdmType is ComplexType && p.DeclaringType == type); 
    } 

    public IEnumerable<EdmProperty> GetPropertiesWithDefaultValues(EntityType type) 
    { 
     return type.Properties.Where(p => p.TypeUsage.EdmType is SimpleType && p.DeclaringType == type && p.DefaultValue != null); 
    } 

    public IEnumerable<EdmProperty> GetPropertiesWithDefaultValues(ComplexType type) 
    { 
     return type.Properties.Where(p => p.TypeUsage.EdmType is SimpleType && p.DeclaringType == type && p.DefaultValue != null); 
    } 

    public IEnumerable<NavigationProperty> GetNavigationProperties(EntityType type) 
    { 
     return type.NavigationProperties.Where(np => np.DeclaringType == type); 
    } 

    public IEnumerable<NavigationProperty> GetCollectionNavigationProperties(EntityType type) 
    { 
     return type.NavigationProperties.Where(np => np.DeclaringType == type && np.ToEndMember.RelationshipMultiplicity == RelationshipMultiplicity.Many); 
    } 

    public FunctionParameter GetReturnParameter(EdmFunction edmFunction) 
    { 
     ArgumentNotNull(edmFunction, "edmFunction"); 

     var returnParamsProperty = edmFunction.GetType().GetProperty("ReturnParameters"); 
     return returnParamsProperty == null 
      ? edmFunction.ReturnParameter 
      : ((IEnumerable<FunctionParameter>)returnParamsProperty.GetValue(edmFunction, null)).FirstOrDefault(); 
    } 

    public bool IsComposable(EdmFunction edmFunction) 
    { 
     ArgumentNotNull(edmFunction, "edmFunction"); 

     var isComposableProperty = edmFunction.GetType().GetProperty("IsComposableAttribute"); 
     return isComposableProperty != null && (bool)isComposableProperty.GetValue(edmFunction, null); 
    } 

    public IEnumerable<FunctionImportParameter> GetParameters(EdmFunction edmFunction) 
    { 
     return FunctionImportParameter.Create(edmFunction.Parameters, _code, _ef); 
    } 

    public TypeUsage GetReturnType(EdmFunction edmFunction) 
    { 
     var returnParam = GetReturnParameter(edmFunction); 
     return returnParam == null ? null : _ef.GetElementType(returnParam.TypeUsage); 
    } 

    public bool GenerateMergeOptionFunction(EdmFunction edmFunction, bool includeMergeOption) 
    { 
     var returnType = GetReturnType(edmFunction); 
     return !includeMergeOption && returnType != null && returnType.EdmType.BuiltInTypeKind == BuiltInTypeKind.EntityType; 
    } 
} 

public static void ArgumentNotNull<T>(T arg, string name) where T : class 
{ 
    if (arg == null) 
    { 
     throw new ArgumentNullException(name); 
    } 
} 
#> 
+0

Se si sceglie di utilizzare questo si noterà che le classi parziali generate hanno un metodo parziale chiamato WhenPropertyChanged. Se si implementa una classe parziale accanto alle classi parziali generate e quindi si implementa ciò, viene chiamato prima di PropertyChanged. In realtà ho appena individuato un bug, questo verrà chiamato solo se c'è un listener sull'evento PropertyChanged e non è questa l'intenzione. – naskew

0

Io lavoro con Visual Basic e ho la tendenza a godere del refactoring delle architetture legacy e non.

Quindi, ho capito come farlo utilizzando le risposte di cui sopra ma in Entity Framework 6.1.3 e .net 4.6.1.

Ho tradotto dalle risposte date da altri, quindi posso solo prendermi il merito del pezzo di riscoperta e traduzione che ho fatto stasera.

Il progetto per cui è per questo è piuttosto piccolo, è winforms e volevo l'associazione dati piuttosto che una manciata di aggiornamenti manuali ai controlli. NON volevo aggiungere ancora più complessità aggiungendo più separazione, perché qui non c'era abbastanza beneficio. Ce n'è abbastanza per giustificare questo :).

Spero che aiuti altri codificatori VB.

La classe Base:

Imports System.ComponentModel 
Imports System.Runtime.CompilerServices 

Public MustInherit Class BaseModel 
    Implements INotifyPropertyChanged 
    Protected Function SetProperty(Of T)(ByRef storage As T, value As T, <CallerMemberName> Optional propertyName As String = Nothing) As Boolean 
     If Equals(storage, value) Then Return False 
     storage = value 
     OnPropertyChanged(propertyName) 
     Return True 
    End Function 

    Public Event PropertyChanged As PropertyChangedEventHandler Implements INotifyPropertyChanged.PropertyChanged 

    Protected Overridable Sub OnPropertyChanged(propertyName As String) 
     RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(propertyName)) 
    End Sub 
End Class 

public string proprietà non esiste nel file VB TT (Assicuratevi che sia il non ModelName.tt il ModelName.Context.tt). Nota l'uso del condizionale per il confronto nullable. Se non lo hai, non farai sparare la cosa!

Public Function AnyProperty(accessibility As String, type As String, name As String, getterAccessibility As String, setterAccessibility As String, defaultValue As String) 
      Dim CompareLine = if(type.contains("Null"), $"if Not Nullable.Equals({name}, value) ", $"if {name} <> value ") 
      Return String.Format(_ 
       CultureInfo.InvariantCulture, _ 
       "{6} Private _{0} As {1}{2}{6}" & _ 
       " {3} Property {0} As {1}{6}" & _ 
       "  {4}Get{6}" & _ 
       "   Return _{0}{6}" & _ 
       "  End Get{6}" & _ 
       "  {5}Set(ByVal value As {1}){6}" & _ 
       "    {7} then SetProperty(_{0}, value){6}" & _ 
       "  End Set{6}" & _ 
       " End Property", _ 
       name, _ 
       type, _ 
       defaultValue, _ 
       accessibility, _ 
       getterAccessibility, _ 
       setterAccessibility, _ 
       Environment.NewLine, 
       CompareLine) 
End Function 

EntityClassOpening

Public Function EntityClassOpening(entity As EntityType) As String 
     Return String.Format(_ 
      CultureInfo.InvariantCulture, _ 
      "Partial {0} {1}Class {2}{3}", _ 
      Accessibility.ForType(entity), _ 
      _code.SpaceAfter(_code.MustInheritOption(entity)), _ 
      _code.Escape(entity), _ 
      _code.StringBefore(Environment.Newline & " Inherits ", If(String.IsNullOrEmpty(_typeMapper.GetTypeName(entity.BaseType)), "BaseModel", _typeMapper.GetTypeName(entity.BaseType)))) 
    End Function 

Se scopro qualcosa di significativo da aggiungere a questo, farò così.

Si prega di notare il mio caso d'uso: progetto VB leggero, nessuna giustificazione per l'introduzione di MVVM/MVC e livelli di repository ma un sacco di motivi per volere l'associazione dati piuttosto che fastidiosi aggiornamenti condizionali da e verso i controlli - molti dei quali hanno un EditValue che sono di tipo Object (Devexpress winforms controlla).

Problemi correlati