Released: v2.17.0 (Nov 26, 2015)
Whats new in v2.17.0:Case 156. Should get null instead of "NULL" for varchar DEFAULT NULL. Thanks to yyjdelete.Case 147: Add support for stored procedure user defined types. Thanks to mhwlng and...
View ArticleCreated Release: v2.17.0 (Nov 26, 2015)
Whats new in v2.17.0:Case 156. Should get null instead of "NULL" for varchar DEFAULT NULL. Thanks to yyjdelete.Case 147: Add support for stored procedure user defined types. Thanks to mhwlng and...
View ArticleCreated Unassigned: Warning when building a solution [159]
When I am re-building a solution I see the following warning:warning CS0108: 'ISiriusSqlContext.SaveChanges()' hides inherited member 'IContext.SaveChanges()'. Use the new keyword if hiding was...
View ArticleCreated Unassigned: Foreign key compile error - Duplicate anonymoous type...
I have the following Foreign key on a table in my DB:```ALTER TABLE [Ops].[FCMarketMapping] WITH CHECK ADD CONSTRAINT [FK_FCMarketMapping_markets] FOREIGN KEY([MarketId])REFERENCES...
View ArticleNew Post: How do I stop this table from being pluralized?
Hi, I have a table name like: MyLongNameTable_TAS It always ends up as: MyLongNameTable_TA How can I stop it from dropping the final S in the table name? I have tried:Inflector.PluralizationService =...
View ArticleCreated Issue: Incorrect mapping is generated when a key is made up of more...
There appears to be a problem were it is possible that an incorrect mapping is generated when a key is made up of more than one propertyFor example I have a foreign key made up of CaseID (not nullable)...
View ArticleCreated Unassigned: Still using Async if TargetFrameworkVersion = "4.0" [162]
setting TargetFrameworkVersion = "4.0"; The following is generatedpublic class FakeDbSet<TEntity> : DbSet<TEntity>, IQueryable, IEnumerable<TEntity>, IDbAsyncEnumerable<TEntity>...
View ArticleSource code checked in, #f3449deef264
Case 162. Still using Async if TargetFrameworkVersion = "4.0"
View ArticleEdited Issue: Still using Async if TargetFrameworkVersion = "4.0" [162]
setting TargetFrameworkVersion = "4.0"; The following is generatedpublic class FakeDbSet<TEntity> : DbSet<TEntity>, IQueryable, IEnumerable<TEntity>, IDbAsyncEnumerable<TEntity>...
View ArticleCommented Issue: Still using Async if TargetFrameworkVersion = "4.0" [162]
setting TargetFrameworkVersion = "4.0"; The following is generatedpublic class FakeDbSet<TEntity> : DbSet<TEntity>, IQueryable, IEnumerable<TEntity>, IDbAsyncEnumerable<TEntity>...
View ArticleNew Post: How do I stop this table from being pluralized?
What is the exact name of the table held in SQL Server? If it's my_long_name_table_Tas, then you should use new CustomPluralizationEntry("my_long_name_table_Tas", "my_long_name_table_Tas")
View ArticleCreated Unassigned: Bug when view contains period character? [163]
Hi there.I have a view name EGData.Bolig.CreditorOpenInvoicesI have tried using renaming to fix namespace related issues. TableRename = (name, schema) =>{ return name.Replace(".Bolig.", "");};When...
View ArticleEdited Unassigned: Bug when view contains period character? [163]
Hi there.I have a view name EGData.Bolig.CreditorOpenInvoicesI have tried using renaming to fix namespace related issues. TableRename = (name, schema) =>{ return name.Replace(".Bolig.", "");};When...
View ArticleCreated Unassigned: SProc return model generated incorrectly.... [164]
ALTER Procedure [dbo].[GetDbAttribute] @name varchar(20)AS SET NOCOUNT ON SELECT value FROM ::fn_listextendedproperty(NULL, NULL, NULL, NULL, NULL, NULL, NULL) WHERE [name] = @namecreates:public class...
View ArticleEdited Unassigned: SProc return model generated incorrectly.... [164]
ALTER Procedure [dbo].[GetDbAttribute] @name varchar(20)AS SET NOCOUNT ON SELECT value FROM ::fn_listextendedproperty(NULL, NULL, NULL, NULL, NULL, NULL, NULL) WHERE [name] = @namecreates:public class...
View ArticleEdited Unassigned: SProc return model generated incorrectly.... [164]
ALTER Procedure [dbo].[GetDbAttribute] @name varchar(20) AS SET NOCOUNT ON SELECT value FROM ::fn_listextendedproperty(NULL, NULL, NULL, NULL, NULL, NULL, NULL) WHERE [name] = @namecreates: public...
View ArticleNew Post: How do I stop this table from being pluralized?
Hi Simon, thanks for responding. The exact name is: Settings_TAS. so using: new CustomPluralizationEntry("Settings_Tas", "Settings_Tas"), and I've tried setting set: UseCamelCase = false; That doesn't...
View ArticleNew Post: Views - LeftJoin - PrimaryKey(s)
Hello Simon, I've some questions to views. Searching the internet already answered my questions, but due to your experience with the EF, I just want to confirm these answers. E.g., I've two tables,...
View ArticleEdited Unassigned: Bug when view contains period character? [163]
Hi there.I have a view name EGData.Bolig.CreditorOpenInvoicesI have tried using renaming to fix namespace related issues. TableRename = (name, schema) =>{ return name.Replace(".Bolig.", "");};When...
View ArticleCommented Unassigned: Bug when view contains period character? [163]
Hi there.I have a view name EGData.Bolig.CreditorOpenInvoicesI have tried using renaming to fix namespace related issues. TableRename = (name, schema) =>{ return name.Replace(".Bolig.", "");};When...
View Article