.NET Framework Class Libraries announcements
-
Link
ASP.NET Questions are off-topic in .NET Base class library, and will be moved to the Off-Topic forum when posted. Please ask questions relating to ASP.NET at the ASP.NET Forums.
.NET Framework inside SQL Server announcements
-
Link
This forum covers questions regarding .NET assemblies and database objects running as part of SQL Server including user-defined types, user-defined aggregates, UDFs, triggers, and stored procedures implemented in .NET code. supported by SQL Server 2005 and later versions. Other questions regarding SQL Server database access and other related technologies should be directed to the most appropriate forum to obtain the best response.
Questions on SQL Server .NET Client (SqlClient) data access should be posted to the ADO.NET data provider forum: http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/threads
Questions on using SQL Server with ASP.NET should be posted to the ASP.NET forums: http://forums.asp.net/
Questions on writing Transact-SQL code, including T-SQL stored procedures, UDFs, and triggers: http://social.technet.microsoft.com/Forums/en-US/transactsql/threads
Questions on installation problems pertaining to .NET installations should be posted to the SQL Server Setup and Upgrade forum: http://social.technet.microsoft.com/Forums/en-US/sqlsetupandupgrade/threads
Questions on problems using SQL Server Data Tools: http://social.technet.microsoft.com/Forums/en-US/sqltools/threads
Questions on using other Data Access APIs (e.g. ODBC, OLE DB): http://social.technet.microsoft.com/Forums/en-US/sqldataaccess/threads
Questions on writing code for SQL Server Compact Edition: http://social.technet.microsoft.com/Forums/en-US/sqlce/threads
Questions on SQL Server Express-specific issues: http://social.technet.microsoft.com/Forums/en-US/sqlexpress/threads
Questions that are off-topic in this forum may be moved to one of the other, more relevent, forums to ensure the best, most prompt response and facilitate forum-specific searchng for similar questions that have already been resolved.
.NET Native Preview announcements
-
Link
.NET Native compiles C# to native machine code that performs like C++. You will continue to benefit from the productivity and familiarity of the .NET Framework with the great performance of native code. Popular Windows Store apps start up to 60% faster and use 15-20% less memory when compiled with .NET Native.
Useful resources for .NET Native
Download .NET Native Developer Preview and general resources:
http://go.microsoft.com/fwlink/?LinkID=394990MSDN Documentation for .NET Native:
http://go.microsoft.com/fwlink/?LinkID=392862General .NET announcements:
http://blogs.msdn.com/b/dotnet
Ad Revenue, Payout & Taxes announcements
-
Link
Please be advised that in an effort to provide a more unified Dev Center experience the ads-in-apps forums have been moved as of August 01, 2016 into the same location housing the other Dev Center forums.
If you already have links to the forums for App/Ad Unit Management, Promote Your App, and AdSDK they should continue to work. The Payout and Reporting forums have been combined and content migrated with the Dev Center Payout and Reporting Forum. All of the original posts and replies still remain and can be found in the new locations.If you have any specific questions regarding the forum migration please contact support via the Dev Center Support Portal.
ADO.NET Entity Framework and LINQ to Entities (Pre-Release) announcements
-
Link
This Entity Framework Pre-Release forum is closed.
We are seeing a lot of great Entity Framework questions (and answers) from the community on Stack Overflow. As a result, our team is going to spend more time reading and answering questions posted on Stack Overflow.
We would encourage you to post questions on Stack Overflow using the entity-framework tag. We will also continue to monitor the Entity Framework forum.
Entity Framework Team
ADO.NET Managed Providers announcements
-
Link
We view your organization as a key stakeholder in the process that we have to identify areas for future investments for SQL Connectivity components that address major development platforms, including ODBC, ADO.NET, JDBC and PHP. The feedback you provide is valuable and each response will be read and will be treated with utmost confidence. The survey can be found in the link below and will be available until 9th September, 2011 5:00 PM PST. http://www.zoomerang.com/Survey/WEB22CS45XT9FE/.
Thanks
Raghu Ram
SQL Connectivity Group Program Manager
Announcements for all Forums announcements
-
Link
This is an announcements forum, intended for the forums team to communicate important news to all Forums users. Please do not post here unless you have reason to make an announcement. While we appreciate all of the smoke-testing while these forums are new, we respectfully request that you do that in the Sandbox forums for any of the brands.
Thanks for using the new Forums!
-
0 Votes
Compare two fields in Access is not working
User1997074450 posted I have two fields and they need to match. I have a written a iif([field1]=[field2],1,0) but this is returning records even though they are ...Answered | 2 Replies | 511 Views | Created by Anonymous - Monday, March 1, 2021 2:50 AM | Last reply by Anonymous - Monday, March 1, 2021 12:58 PM -
0 Votes
AD query to find user with attribute Hidefromaddresslist=true
User-376419408 posted Hi all, I am trying to find the all the users in ad whose address is hidden on address book because ...Unanswered | 3 Replies | 861 Views | Created by Anonymous - Tuesday, February 23, 2021 5:10 AM | Last reply by Anonymous - Wednesday, February 24, 2021 4:16 AM -
0 Votes
Writing Parent and Child data at the same time.
User-1691787363 posted Morning, Hope someone can help with with this. I have two models: public class Parent { public ...Answered | 9 Replies | 2390 Views | Created by Anonymous - Saturday, February 20, 2021 11:50 AM | Last reply by Anonymous - Sunday, February 21, 2021 12:33 AM -
0 Votes
Error while trying to update database for sqlcachedependency.
User426001450 posted I keep receiving the following messsage from the command prompt while trying to update database for sqlcachedependency. What should I do? ...Unanswered | 1 Replies | 311 Views | Created by Anonymous - Wednesday, February 17, 2021 5:50 AM | Last reply by Anonymous - Thursday, February 18, 2021 2:02 AM -
0 Votes
Using EF as scoped service throws exception "A command is already in progress"
public void ConfigureServices(IServiceCollection services) > { > services.AddHttpContextAccessor(); > ...Answered | 6 Replies | 2930 Views | Created by Anonymous - Saturday, February 13, 2021 11:48 PM | Last reply by Anonymous - Sunday, February 14, 2021 4:40 PM -
0 Votes
Select one recent row for that record with group by two columns
x.Room) .GroupBy(x => new { x.RoomId, x.RequesterId }) .Select(room => new { Status = ...Unanswered | 5 Replies | 4717 Views | Created by Anonymous - Wednesday, February 10, 2021 10:44 AM | Last reply by Anonymous - Thursday, February 11, 2021 5:53 AM -
0 Votes
[EF Core / DbContext] If I .Add() a row in a seperate thread, related tables/rows' state are set to EntityState.Added => Exception
1) { foreach (var entry in entries) { var entity = entry.Entity; var state = entry.State; if (entity != vehicleWarehouse) ...Unanswered | 8 Replies | 442 Views | Created by Anonymous - Friday, February 5, 2021 11:09 AM | Last reply by Anonymous - Wednesday, February 10, 2021 11:07 AM -
0 Votes
insert for many to many relation in entity framework
User87195929 posted hi team. i am unable to insert the many to many relation useing navigation property for 2 table.. if i ...Unanswered | 7 Replies | 4510 Views | Created by Anonymous - Monday, February 8, 2021 1:14 PM | Last reply by Anonymous - Wednesday, February 10, 2021 5:39 AM -
0 Votes
Making EF Core properties backward compatible with Linq-To-Sql
User-1262787652 posted ASP. NET MVC 4.8 application uses DbLinq. Database has tables where column and table names are same: ...Answered | 4 Replies | 443 Views | Created by Anonymous - Sunday, February 7, 2021 2:27 PM | Last reply by Anonymous - Tuesday, February 9, 2021 8:20 PM -
0 Votes
How to use new version of DbContext assembly after old version is loaded
User-1262787652 posted Entity Framework Core NpgSql MVC application uses Scaffolded DbContext to access data. DbContext is stored in separate assembly ...Unanswered | 2 Replies | 218 Views | Created by Anonymous - Monday, February 8, 2021 2:23 PM | Last reply by Anonymous - Monday, February 8, 2021 9:56 PM -
0 Votes
One-to-many projection in a Web API NET5.0 controller - how to do it?
User379720387 posted I set out to create a controller to retrieve Transaction properties for display purposes later on. A single Txn has all the typical ...Answered | 22 Replies | 775 Views | Created by Anonymous - Saturday, January 30, 2021 12:32 AM | Last reply by Anonymous - Monday, February 8, 2021 1:04 AM -
0 Votes
Scaffold in runtime
User-1262787652 posted Tried to implement runtime scaffolding as described ...Unanswered | 1 Replies | 239 Views | Created by Anonymous - Saturday, February 6, 2021 10:28 PM | Last reply by Anonymous - Sunday, February 7, 2021 10:22 AM -
0 Votes
Prevent SQL Injection
User-614943948 posted I have this simple query executed in custom control. SELECT StateID, StateName FROM State WHERE IsEnabled = 'TRUE' ORDER BY ...Answered | 3 Replies | 282 Views | Created by Anonymous - Thursday, January 28, 2021 8:15 AM | Last reply by Anonymous - Thursday, February 4, 2021 11:23 AM -
0 Votes
How to create DbContext at runtime
User-1262787652 posted ASP.NET 5 MVC Core application uses databases whose table columns are slightly different. Npgsql EF Core provider is used. How to create ...Unanswered | 13 Replies | 1119 Views | Created by Anonymous - Tuesday, January 26, 2021 11:14 AM | Last reply by Anonymous - Tuesday, January 26, 2021 12:42 PM -
0 Votes
BUMP EF Core 5.0 model customization needed - Microsoft.Data.SqlClient.SqlException (0x80131904): Invalid column name 'BIdNavigationBId'.
User379720387 posted I have a Client table with 5 foreign keys: OwnerLocation, OwnerBillTo, EnteredByProvider, sId, gId, bId SqlServer finds a problem as ...Answered | 9 Replies | 957 Views | Created by Anonymous - Saturday, January 2, 2021 6:11 PM | Last reply by Anonymous - Monday, January 25, 2021 2:53 PM -
0 Votes
Microsoft Excel 16.0 object library?
I am trying to open an excel file and read the last cell in the "A" column programmatically using VB.net. I have the code written and have created a simple 1 row spreadsheet in order to ... -
0 Votes
permanently deleted
Is it possible to recover an email that was permanently deleted from the mail, more than five years ago?Unanswered | 0 Replies | 8275 Views | Created by lkfnlsekdjbhestjbhs - Tuesday, January 19, 2021 12:27 AM -
0 Votes
Unable to validate resource name when creating a knowledge base as a student.
I receive the feedback of validate resource name failed, please try again later and the selected subscription is disabled. I have tried several times but still get the same feedback. -
0 Votes
How do I add developers to the Xbox team to post and create new games?
How do I add new members to the account? -
0 Votes
Please on c#
Develop a triangle class. A triangle is defined on a plane by the coordinates of its vertices. Provide the possibility of checking the existence of a triangle, implement the functions of calculating ...
.NET Framework Class Libraries announcements
-
Link
ASP.NET Questions are off-topic in .NET Base class library, and will be moved to the Off-Topic forum when posted. Please ask questions relating to ASP.NET at the ASP.NET Forums.
.NET Framework inside SQL Server announcements
-
Link
This forum covers questions regarding .NET assemblies and database objects running as part of SQL Server including user-defined types, user-defined aggregates, UDFs, triggers, and stored procedures implemented in .NET code. supported by SQL Server 2005 and later versions. Other questions regarding SQL Server database access and other related technologies should be directed to the most appropriate forum to obtain the best response.
Questions on SQL Server .NET Client (SqlClient) data access should be posted to the ADO.NET data provider forum: http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/threads
Questions on using SQL Server with ASP.NET should be posted to the ASP.NET forums: http://forums.asp.net/
Questions on writing Transact-SQL code, including T-SQL stored procedures, UDFs, and triggers: http://social.technet.microsoft.com/Forums/en-US/transactsql/threads
Questions on installation problems pertaining to .NET installations should be posted to the SQL Server Setup and Upgrade forum: http://social.technet.microsoft.com/Forums/en-US/sqlsetupandupgrade/threads
Questions on problems using SQL Server Data Tools: http://social.technet.microsoft.com/Forums/en-US/sqltools/threads
Questions on using other Data Access APIs (e.g. ODBC, OLE DB): http://social.technet.microsoft.com/Forums/en-US/sqldataaccess/threads
Questions on writing code for SQL Server Compact Edition: http://social.technet.microsoft.com/Forums/en-US/sqlce/threads
Questions on SQL Server Express-specific issues: http://social.technet.microsoft.com/Forums/en-US/sqlexpress/threads
Questions that are off-topic in this forum may be moved to one of the other, more relevent, forums to ensure the best, most prompt response and facilitate forum-specific searchng for similar questions that have already been resolved.
.NET Native Preview announcements
-
Link
.NET Native compiles C# to native machine code that performs like C++. You will continue to benefit from the productivity and familiarity of the .NET Framework with the great performance of native code. Popular Windows Store apps start up to 60% faster and use 15-20% less memory when compiled with .NET Native.
Useful resources for .NET Native
Download .NET Native Developer Preview and general resources:
http://go.microsoft.com/fwlink/?LinkID=394990MSDN Documentation for .NET Native:
http://go.microsoft.com/fwlink/?LinkID=392862General .NET announcements:
http://blogs.msdn.com/b/dotnet
Ad Revenue, Payout & Taxes announcements
-
Link
Please be advised that in an effort to provide a more unified Dev Center experience the ads-in-apps forums have been moved as of August 01, 2016 into the same location housing the other Dev Center forums.
If you already have links to the forums for App/Ad Unit Management, Promote Your App, and AdSDK they should continue to work. The Payout and Reporting forums have been combined and content migrated with the Dev Center Payout and Reporting Forum. All of the original posts and replies still remain and can be found in the new locations.If you have any specific questions regarding the forum migration please contact support via the Dev Center Support Portal.
ADO.NET Entity Framework and LINQ to Entities (Pre-Release) announcements
-
Link
This Entity Framework Pre-Release forum is closed.
We are seeing a lot of great Entity Framework questions (and answers) from the community on Stack Overflow. As a result, our team is going to spend more time reading and answering questions posted on Stack Overflow.
We would encourage you to post questions on Stack Overflow using the entity-framework tag. We will also continue to monitor the Entity Framework forum.
Entity Framework Team
ADO.NET Managed Providers announcements
-
Link
We view your organization as a key stakeholder in the process that we have to identify areas for future investments for SQL Connectivity components that address major development platforms, including ODBC, ADO.NET, JDBC and PHP. The feedback you provide is valuable and each response will be read and will be treated with utmost confidence. The survey can be found in the link below and will be available until 9th September, 2011 5:00 PM PST. http://www.zoomerang.com/Survey/WEB22CS45XT9FE/.
Thanks
Raghu Ram
SQL Connectivity Group Program Manager
Announcements for all Forums announcements
-
Link
This is an announcements forum, intended for the forums team to communicate important news to all Forums users. Please do not post here unless you have reason to make an announcement. While we appreciate all of the smoke-testing while these forums are new, we respectfully request that you do that in the Sandbox forums for any of the brands.
Thanks for using the new Forums!